美文网首页
iOS pod 使用

iOS pod 使用

作者: LYDeveloper | 来源:发表于2018-03-22 11:41 被阅读14次

    1、安装什么的就不说了,网上一大堆。

    2、cd到项目路径

    3、vim Podfile  创建文件。

    4、键盘i输入。

    5、target '工程名' do

    platform :ios, '8.0'

    def pods

        pod 'SDWebImage', '~> 4.0.0'

        pod 'SDAutoLayout', '~> 2.1.7'

        pod 'Masonry', '~> 1.0.2'

        pod 'LHPerformanceStatusBar', '~> 0.1.0'

    end

    target 'SVideo' do

        pods

    end

    6、OK搞定。

    相关文章

      网友评论

          本文标题:iOS pod 使用

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