美文网首页
cocoapods pod install 安装报错 is n

cocoapods pod install 安装报错 is n

作者: August24 | 来源:发表于2016-01-07 20:45 被阅读414次

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

    platform :ios, '8.0'
    pod 'AFNetworking'
    

    高版本的cocoa pods在编写Podfile文件必须这样写(手动添加)

    platform :ios, '8.0'
    target "targetName" do
    pod 'AFNetworking'
    end
    

    也可以在终端cd 到当前工程 ,使用 pod init 命令,这样会自动为我们生成Podfile文件。

    相关文章

      网友评论

          本文标题:cocoapods pod install 安装报错 is n

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