标签:
Crash Log:
Last Exception Backtrace:
0 CoreFoundation 0x2f087f06 __exceptionPreprocess + 1266 AmazingBOX 0x0036cc62 +[RHAddressBookSharedServices sharedInstance] (RHAddressBookSharedServices.m:98)
原因:
Project引用了RHAddressBook库,当中有catagory类NSThread+RHBlockAdditions.h。
因此,须要在other linker flag里面使用-ObjC、-force_load或者-all_load。
解决:改动链接參数(Other Linker Flag)
1.去掉-ObjC、 -all_load參数(这个參数会强制全部的静态链接库都载入当中的category);
2.改为逐一载入Three20的各个静态库,即改动链接參数(Other Linker Flag)为例如以下形式:
-force_load $(SRCROOT)/RHAddressBook/libRHAddressBook.a
标签:
原文地址:http://www.cnblogs.com/bhlsheji/p/5176122.html