美文网首页
【Swift】安装CocoPods时遇到的Podfile问题集

【Swift】安装CocoPods时遇到的Podfile问题集

作者: 布袋的世界 | 来源:发表于2016-12-21 17:17 被阅读53次

    2017-2-11号补充,更加方便快捷的Cocopods

    Podfile

    use_frameworks!
    target 'JustDemo' do
    pod 'Just'
    pod 'Kingfisher'
    end

    // Mark: - https://github.com/JustHTTP/Just
    在XODE里,右键点击工程名

    Open with External Editor 输入

    pod update —no-repo-update (--)

    若要进行更新则

    pod update





    pod终端常用命令

    进入工程文件夹

    cd desktop

    cd cocoa pods //自定义的文件夹名称

    cd swiftyjson //工程名

    touch Podfile // 建立空白 Podfile

    // 以下为 Podfile的内容

    platform:ios,'10.0' //指定IOS版本

    target "SwiftyJson" do //指定工程名称

    pod 'SwiftyJSON', '~> 3.1.3' //使用 pod search SwiftyJSON

    use_frameworks!

    end

    pod search UI

    pod search SwiftyJson

    退出 wq

    相关文章

      网友评论

          本文标题:【Swift】安装CocoPods时遇到的Podfile问题集

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