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
网友评论