美文网首页
iOS组件化2 之 使用远程私有库

iOS组件化2 之 使用远程私有库

作者: csii993 | 来源:发表于2019-04-30 15:25 被阅读0次

    1、添加Podfile文件

    2、在Podfile的最顶部添加如下描述

    source 'https://gitee.com/xxx/LGSpecs.git'#私有索引库的地址
    source 'https://github.com/CocoaPods/Specs.git'#为了保证公有库的正常使用
    

    3、添加使用组件LGBase

    source 'https://gitee.com/csii993/mySpecs.git'
    source 'https://github.com/CocoaPods/Specs.git'
    
    platform :ios, '9.0'
    target 'SpecsDemo' do
      pod 'LGBase'
      pod 'AFNetworking'
    end
    

    4、安装组件

    pod install
    

    相关文章

      网友评论

          本文标题:iOS组件化2 之 使用远程私有库

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