iOS--打开工程报错:it is in a future Xcode

今天在导入一个项目的时候,在 Xcode 12.3 上打开失败,弹窗错误如下:
The project at 'xxx.xcodeproj' cannot be opened because it is in a future Xcode project file format. Adjust the project format using a compatible version of Xcode to allow it to be opened by this version of Xcode.

根据提示,原因是因为这个工程是用更新版本的 Xcode 生成的,旧版本需要修改格式进行兼容后才能打开。

解决方法:

第一步,找到工程文件 xxx.xcodeproj,右键选择“显示包内容”
第二步,找到内部的工程配置文件:project,pbxproj,并打开

第三步,修改文件顶部的 objecVersion 字段为你的 Xcode 兼容的版本,如:
objectVersion = 50;
第四步,保存后,重新打开工程。

你可能感兴趣的:(iOS--打开工程报错:it is in a future Xcode)