1
如我們所知,編譯的靜態庫文件* .a增加了一個項目,項目應該配置「其他鏈接器標誌」(OTHER_LDFLAGS )添加值「-ObjC」和「-all_load」。iOS的Google靜態庫如何不需要「其他鏈接器標誌」(OTHER_LDFLAGS)
但正如我所看到的,iOS的Google庫不需要它,它只是簡單地拖入和使用。
我想念什麼?
感謝先進。
對不起,我的英文epxress。
特拉維斯
如我們所知,編譯的靜態庫文件* .a增加了一個項目,項目應該配置「其他鏈接器標誌」(OTHER_LDFLAGS )添加值「-ObjC」和「-all_load」。iOS的Google靜態庫如何不需要「其他鏈接器標誌」(OTHER_LDFLAGS)
但正如我所看到的,iOS的Google庫不需要它,它只是簡單地拖入和使用。
我想念什麼?
感謝先進。
對不起,我的英文epxress。
特拉維斯
/*
* Add this macro before each category implementation, so we don't have to use
* -all_load or -force_load to load object files from static libraries that only contain
* categories and no classes.
* See http://developer.apple.com/library/mac/#qa/qa2006/qa1490.html for more info.
*/
#define TT_FIX_CATEGORY_BUG(name) @interface TT_FIX_CATEGORY_BUG_##name @end \
@implementation TT_FIX_CATEGORY_BUG_##name @end
從three20的TTCorePreprocessorMacros.h
非常有用,THX了很多複製! – 2011-08-17 05:27:59