在Other Linker Flags里加上所需的参数,用到的参数一般有以下3个: -ObjC -all_load -force_load 下面来说说每个参数存在的意义和具体做的事情. 首先是-ObjC,一般这个参数足够解决前面提到的问题,苹果官方说明如下: This flag causes the linker to load every object file in the library that defines an Objective-C class or category. Whil…
• 值:-objC,-all_load,-force_load • -objC: 在iOS 中,使用-all_load时,如果静态库中有类别时会出问题,使用其他两个值则不会有问题. • -all_load: forces the linker to load all object files from every archive it sees, even those without Objective-C code. • -force_load: is available in X…