1>.ld: symbol dyld_stub_binding_helper not found, normally in crt1.o/dylib1.o/bundle1.o for architecture 

原因:不支持低版本的系统如3.0

解决:Deployment Target was 3.0. Changing it to 4.3 fixed it.或者是更高的版本

ios 多个present iOS 多个工程资源 被覆盖_Developer

2>.Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.

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

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

 

会出现这样的冲突消息

[cpp]  

<<<<<<< .mine  
    9ADAAC6A15DCEF6A0019ACA8 .... in Resources */,  
=======  
    52FD7F3D15DCEAEF009E9322 ... in Resources */,  
>>>>>>> .r269

 

解决方法:1.对.xcodeproj 文件右键,显示包内容(SVN里直接执行第二步)

    2.双击打开 project.pbxproj 文件

 

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

 

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

 

    5.保存,退出

 

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

3>.

/bin/ln -s Versions/Current/Headers /Users/pro/Library/Developer/Xcode/DerivedData/MFWIOS-breuzemffzmbdearhkaspfwfbgta/Build/Products/Debug-iphoneos/fo.framework/Headers
error: File exists and is not a symbolic link: /Users/pro/Library/Developer/Xcode/DerivedData/MFWIOS-breuzemffzmbdearhkaspfwfbgta/Build/Products/Debug-iphoneos/fo.framework/Headers

解决:将/Users/pro/Library/Developer/Xcode目录下DerivedData文件夹删除

4>.

Cannot find executable for CFBundle 0xb99f2a0 </Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/AccessibilityBundles/MusicLibrary.axbundle> (not loaded)

解决:

ios 多个present iOS 多个工程资源 被覆盖_Developer_02

,就OK了

5>.

Undefined symbols for architecture i386:
“_OBJC_CLASS_$_XXX”, referenced from:
objc-class-ref in XXX
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

这个错误的发生原因一般是“XXX”这个文件(类库)虽然引入了工程中,但是由于种种原因(常见于多人开发,svn同步不规范)导致“XXX”并未被添加到project.pbxproj这个文件中。

解决方法是点击工程,在targets界面中找到Build Phases,根据提示信息“XXX”来判断缺少什么文件,一般如果缺少自定义的文件,XXX会是缺少的类名,那么就在Complie Sources中加入该文件。如果缺少类库,则在Link Binary With Libraries中加入该类库。

6>.

No known class method for selector '  '

错误分析.//删除.h与.m文件时的注意事项

错误原因:创建类时,发现父类写错后删除,但并没有在硬盘上删除,导致重新创建同名类时,Xcode将文件放在根目录上.编译时编译之前的类.

错误现象分析:⓵⓶⓷⓸⓹⓺

总结:类创建错误,删除类并新建同名类时,delete时请注意选择Move to Trash或重新命名类名;否则新建的类将因为路径错误而无法参与编译.

第一:

ios 多个present iOS 多个工程资源 被覆盖_Developer_03

第二:

ios 多个present iOS 多个工程资源 被覆盖_工程文件_04

第三:

ios 多个present iOS 多个工程资源 被覆盖_工程文件_05

第四:

ios 多个present iOS 多个工程资源 被覆盖_工程文件_06

第五:

ios 多个present iOS 多个工程资源 被覆盖_工程文件_07

第六:

ios 多个present iOS 多个工程资源 被覆盖_Developer_08

 

7>.No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386).

网上解决:

ios 多个present iOS 多个工程资源 被覆盖_ios 多个present_09

 

 

 

change Build Active Architecture Only = No, then the build was BUILD SUCCEEDED

但是修改了没用,在6上以及plus上还是出错,在5上也出错,运行在4上就没问题了

 

8>.添加第三方库出错,只要第三方有类别,一般会出现

unrecognized selector sent to instance (0x7fe4e162d830某块)

需要设置

Other Linker Flags 为——ObjC(大小写敏感)

注意:用xcode6.1新建项目如果调用第三方的static library或者framework中的category方法,就会出现unrecognized selector错误,在other link flags设置-ObjC和-all_load也没用。但是如果用xcode5.1.1新建的项目就不会有问题。