更新cocoapod后,pod install出现[!] The
2016-04-01 本文已影响277人
Wind_Wang
解决方法:
在编辑Podfile时:
例如:
platform :ios,'7.0'
pod 'AFNetworking', '~> 3.1.0'
加上target:
例如:
platform :ios,’7.0'
target "targetName" do
pod 'AFNetworking', '~> 3.1.0'
end
注释:
targetName为你工程的名字