当CocoaPods报出
The dependency WordPress-iOS-Editor (~> 1.8.1)
is not used in any concrete target.错误时,是因为CocoaPods升级到最新版本时podfile里面的内容必须指明所用第三方库的target。
所以在创建podfile的时候,请使用一下格式
platform:ios,’9.0’
target “项目名称” do
pod 'WordPress-iOS-Editor'
pod 'AFNetworking'
end
2、 The master
repo requires CocoaPods 1.0.0 - (currently using 0.39.0)错误
出错原因: 是因为CocoaPods没有升级到最新版本
解决办法:打开终端,输入:sudo gem install -n /usr/local/bin cocoapods