use_frameworks!
to your Podfile or target to opt into using it. The Swift Pods being used are: ReactiveCocoa, ReactiveSwift, and Result解決:在想應的pod 'ReactiveCocoa'下添加use_frameworks!
git
ps:注意use_frameworks!後面的!號
github
解決:引用路徑的問題,更改引用路徑。例如:#import <JSONModel.h>,改爲#import <JSONModel/JSONModel.h> 就能夠了
ide
解決:引用路徑的問題,更改引用路徑。例如:#import "JSONModel.h",改爲#import <JSONModel/JSONModel.h> 就能夠了
code
解決:若是第3條解決不了,在pod spec lint後添加--use-libraries。同時在pod trunk push 或者pod repo push 【私有庫】的後添加--use-libraries
ci
--use-libraries表示使用靜態庫或者是framework,這裏主要是解決當咱們依賴一些framework庫後校驗提示找不到庫的時候用到。
get
xxx
depended upon by xxx
解決:在集成cocoapods的時候添加私有或者公有或者二者都有的sources。如公有的sources。pod repo push xiaofengCocoapodsRepo --sources=https://github.com/CocoaPods/Specs.git
it