美文网首页iOS开发资源iOS 开发 iOS Developer
更新cocoapod后,pod install出现[!] The

更新cocoapod后,pod install出现[!] The

作者: Wind_Wang | 来源:发表于2016-04-01 15:39 被阅读277次

解决方法:

在编辑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为你工程的名字

相关文章

网友评论

    本文标题:更新cocoapod后,pod install出现[!] The

    本文链接:https://www.haomeiwen.com/subject/hujylttx.html