iOS開發-pod install 出錯 The dependency `AFNetworking (~> 2.6.0)` is not used in any concrete target.

低版本的cocoapods的Podfile文件pod install能夠正常運行ios

platform :ios, '8.0'
pod 'AFNetworking'

高版本的cocoapods的Podfile文件必須添加targetorm

platform :ios, '8.0'
target "targetName" do
pod 'AFNetworking'
end
相關文章
相關標籤/搜索