美文网首页
使用cocopods导入第三方

使用cocopods导入第三方

作者: 姀影 | 来源:发表于2017-10-10 15:31 被阅读37次

    直接跳过安装cocopods。
    1.新建一个项目。
    2.cd到项目总目录

    $ cd /users/Desktop/Project

    3.建立Podfile(配置文件)

    $ vim Podfile

    键盘输入 i ,进入编辑模式,输入

    platform :ios, '8.0'
    #use_frameworks!个别需要用到它,比如reactiveCocoa
    target 'APPTest' do
    pod 'AFNetworking', '~> 3.1.0'
    pod 'MJRefresh','~> 3.1.0'
    pod 'SDWebImage', '~> 3.7.5'
    end
    

    或者另外一种写法:

    platform :ios, '8.0'
    #use_frameworks!个别需要用到它,比如reactiveCocoa
    def pods
    pod 'AFNetworking', '~> 3.1.0'
    pod 'MJRefresh','~> 3.1.0'
    pod 'SDWebImage', '~> 3.7.5'
    end
    target ‘APPTest’ do
    pods
    end
    

    按Esc,输入 “ :” 号进入vim命令模式,然后在冒号后边输入wq(回车后发现PodTest项目总目录中多一个Podfile文件)

    4.安装。

    $ pod install

    -注意:之前在第三步输入的是

    platform :ios, '8.0'
    pod 'AFNetworking', '~> 3.1.0'
    pod 'MJRefresh','~> 3.1.0'
    pod 'SDWebImage', '~> 3.7.5'
    

    出现报错:

    [!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.
    The dependency `MJRefresh (~> 3.1.0)` is not used in any concrete target.
    The dependency `SDWebImage (~> 3.7.5)` is not used in any concrete target.
    

    百度了一下,更改为之上的步骤。解决了问题。

    相关文章

      网友评论

          本文标题:使用cocopods导入第三方

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