搜索
您的当前位置:首页正文

cocoapods pod install 安装报错 is no

来源:知库网

低版本的cocoa pods在编写Podfile文件时这样写就可以了

platform :iOS, '8.0'

pod 'AFNetworking'

高版本的cocoa pods在编写Podfile文件必须这样写

platform :ios, '8.0'

target "targetName" do

pod 'AFNetworking'

end

Top