今天用Xcode7.3 打开用Xcode8编写过的代码,然后报错:
This version does not support documents saved in the Xcode 8 format. Open this document with Xcode 8
原来是在Xcode8创建的xib中,会自动加入下面这行
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
我们只需要右键选中Xib,然后选中 Open As —> Source Code
然后把刚才的那行删掉就可以了。