一、Git问题
我们自己制作的第三方库如果没有发布到Cocoapods上,而我们又要在Podfile中引用,那么我们可以指定源的方式来集成到我们的项目中。
方式一:
target 'FriesEnglish' do
pod 'MYTeacher', :git => 'http://gerrit.123.net/ios_teacher.git'
pod 'MYKit',:git => 'http://gerrit.123.net/ios_MYIKit.git'
pod 'KTVHTTPCache', '= 1.1.7'
pod 'SVProgressHUD', '0.8.1'
pod 'Qiniu', '= 7.2.5'
end
方式二:
source 'http://gerrit.123.net/ios_MYSpecs'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
target 'FriesEnglish' do
pod 'MYTeacher', :git => 'http://gerrit.123.net/ios_teacher.git'
pod 'MYKit',:git => 'http://gerrit.123.net/ios_MYIKit.git'
pod 'KTVHTTPCache', '= 1.1.7'
pod 'SVProgressHUD', '0.8.1'
pod 'Qiniu', '= 7.2.5'
end
二、访问隐藏的文件
打开cocoapods/repos/的文件夹:
bogon:~ mac$ cd ~/.cocoapods/repos/
bogon:repos mac$ open ./
查看导入第三方进度:
pod install --verbose
网友评论