美文网首页
CocoaPods的一些常用命令

CocoaPods的一些常用命令

作者: Billy_W | 来源:发表于2016-11-03 09:05 被阅读0次

    为了确定AFNetworking是否支持CocoaPods,可以用CocoaPods的搜索功能验证一下。在终端中输入:

    $ pod search AFNetworking

    cd 到项目目录下

    vimPodfile

    platform :ios, '7.0'

    pod "AFNetworking", "~> 2.0"

    保存退出  :wq

    安装 $ pod install

    更新 $ pod updatepod update + 你想升级的那个库的名字 例如: pod update MJRefresh

    最近出现这么一个问题

    [!] The dependency `AFNetworking (~> 2.0)` is not used in any concrete target.

    解决方式为将Podfile 内填写格式改为如下: (TestThirdParty 改为自己项目名)

    platform :iOS, '8.0'

    use_frameworks!

    target 'TestThirdParty' do

    pod 'AFNetworking', '~> 2.6'

    //可以连续pod多个第三方

    // pod 'B','版本'...

    end

    相关文章

      网友评论

          本文标题:CocoaPods的一些常用命令

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