美文网首页
Pod 新建项目

Pod 新建项目

作者: Taoai_M | 来源:发表于2018-06-04 14:10 被阅读16次
    1,打开命令行

    cd 你的项目目录

    2,新建Podfile

    touch Podfile

    3, 编辑Podfile

    vim Podfile

    4, 修改“项目名称”
    
    platform:ios,'8.0'
    
    target'项目名称' do
    
    pod 'AFNetworking'
    
    end
    
    
    5,点击esc健,键入

    :wq

    6, 执行pod安装,

    pod install

    7,打开项目中的.xworkspace

    开始编写代码吧!

    相关文章

      网友评论

          本文标题:Pod 新建项目

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