介绍
在iOS的开发过程中,会使用到很多第三方的类库,而第三方类库也可能使用其他的类库,类库还会涉及到更新等操作,为了使我们在开发过程中,可以统一的管理这些第三方类库,CocoaPods就出现了,CocoaPods应该是iOS最常用最有名的类库管理工具,用于解决更新和引用的问题,就想maven管理依赖jar一样的管理iOS开发的第三方类库。
安装
1.rubygems
mac环境下,rubygems是默认安装的,如果没有,那么麻烦安装下。
由于我的环境中默认安装好了,所以我们只是做一下升级:
sudo gem update --system
注意:你可能会碰到墙的问题,设置镜像方式参考:http://gems.ruby-china.org/
$gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
$gem sources -l
https://gems.ruby-china.org# 确保只有 gems.ruby-china.org(如果遇到 SSL 证书问题,你又无法解决,请直接用http://gems.ruby-china.org避免 SSL 的问题。)
fish:WebDriverAgent iris$ ruby -v
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]
fish:WebDriverAgent iris$ gem -v
2.6.8
2.CocoaPods安装
sudo gem install -n /usr/local/bin cocoapods
fish:WebDriverAgent iris$ pod --version
1.1.1
然后我们来更新下本地仓库,这个命令需要下载很久,甚至失败多次:
pod setup
下载过程中,可以查看repos的情况
fish:.cocoapods iris$ pod repo list
1-hmspecs
- Type: git (master)
- URL: git@192.168.1.208:haimiios/HMSpecs.git
- Path: /Users/iris/.cocoapods/repos/1-hmspecs
master
- Type: git (master)
- URL: https://github.com/CocoaPods/Specs.git
- Path: /Users/iris/.cocoapods/repos/master
2 repos
fish:~ iris$ cd ~/.cocoapods/
fish:.cocoapods iris$ du -sh *
921M repos
命令行说明
1.搜索类库
pod search AFNetworking
2.安装
pod install
3.更新
pod update
4.更新仓库
pod repo update
注意:由于更新仓库这个操作会去连接master的url:https://github.com/CocoaPods/Specs.git,而github的速度奇慢无比,所以有人提供了一些替代。
A.install和update的时候,不去更新本地仓库,加快速度,但是问题是:本地仓库可能真的很旧,需要更新
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
B.使用国内托管(此方法未验证)
pod repo remove master
pod repo add master https://git.coding.net/hging/Specs.git
pod repo update
假如打开Podfile,我们可以看到这么一条
source'https://github.com/CocoaPods/Specs.git'
将这个也换为刚刚repo使用的源,否则依然会从Github上面clone东西,但是国内托管的安全性不保证