project * cannot be opened because the project file cannot be parsed.

1、点击Unity-iPhone.xcodeproj的弹出框

project * cannot be opened because the project file cannot be parsed._第1张图片
1-1

svn更新代码后,打开xcode工程文件,会出现  xxx..xcodeproj  cannot be opened because the project file cannot be parsed.

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

会出现这样的冲突消息

[cpp]view plaincopy

print?

<<<<<<< .mine

9ADAAC6A15DCEF6A0019ACA8 .... in Resources */,

=======

52FD7F3D15DCEAEF009E9322 ... in Resources */,

>>>>>>> .r269

解决方法:1.对.xcodeproj 文件右键,显示包内容

2.双击打开 project.pbxproj 文件

3.找到以上类似的冲突信息(可以用commad + f 搜索)

4.删除 <<<<<<<,======,>>>>>>这些行

5.保存,退出

6.重新打开.xcodeproj文件即可


但是,我的不是这个原因,我的里边检查过了,没有冲突的那些代码,然后我找到了一下两个网址:

http://www.cocoachina.com/bbs/read.php?tid=126430

http://stackoverflow.com/questions/361799/unable-to-open-project-cannot-be-opened-because-the-project-file-cannot-be-pa

目前还在摸索中,希望知道原因的可以指导一二,非常感谢。O(∩_∩)O~

你可能感兴趣的:(project * cannot be opened because the project file cannot be parsed.)