Xcode 工程文件打不开, cannot be opened because the project file cannot be parsed

当使用svn提交代码发生冲突的时候,xcode工程文件会出现打不开的情况,出现这样的提示:XXX.xcode xcodeproj cannot be opened because the project file cannot be parsed。

因为.xcodeproj工程文件冲突了,然后还是会强制更新,内部文件出现了冲突,所以解析不了文件。

解决方法:

1. 右键点击.xcodeproj,选择显示包内容;

2. 双击打开project.pbxproj文件;

3. 找到类似如下的冲突信息(可用command + f 搜索)

<<<<<<<.mine

=========

>>>>>>>.r269

4.删除 <<<<<<<.mine

=========

>>>>>>>.r269

5.保存文件,退出

6.删除三个多余文件夹

你可能感兴趣的:(Xcode 工程文件打不开, cannot be opened because the project file cannot be parsed)