xcode6 framework missing submodule xxx 警告
從xcode6開始,iOS可以直接創建生成framework了
如:
創建 framework 項目,TFKit.framework
則 會自動生成TFKit.h
然后我們再添加一些自已的類,並對外提供 TFA.h,TFB.h
那么需要先在 TFKit.h 里面
#import <TFKit/TFA.h>
#import <TFKit/TFB.h>
最后在build 生成 TFKit.framework使用時,
直接使用
#import <TFKit/TFKit.h> 即可
參考:http://stackoverflow.com/questions/25800301/xcode-missing-submodule-warning