#Xcode8下cocoaPods的安装、使用

心之所向,素履以往,生如逆旅, 一苇以航。--cassiel社长

#Xcode8下cocoaPods的安装、使用_第1张图片
code.jpg

A.cocoaPods的安装

1.首先打开终端,输入以下命令符升级Gem(可以省略)

sudo gem update -n /usr/local/bin —system

2.检查Ruby源

gem sources -l
显示现有ruby源
**CURRENT SOURCES** https://rubygems.org/ https://ruby.taobao.org/

3.移除现有Ruby源:

gem sources--remove https://rubygems.org/
gem sources --remove https://ruby.taobao.org/ (不再维护)

4.安装阿里云Ruby镜像:

gem sources -a http://rubygems-china.oss.aliyuncs.com

5.检查是否成功安装阿里ruby源:

$gem sources -l
显示现有ruby源::
*** CURRENT SOURCES *** http://rubygems-china.oss.aliyuncs.com

6.:安装cocoapods

$sudo gem install cocoapods
10.11之后系统要用命令:sudo gem install -n /usr/local/bin cocoapods
否则会报错:ERROR: While executing gem ... (Errno::EPERM) Operation not permitted - /usr/bin/pod

7.:设置pod仓库

cd ~/.cocoapods //cd到.cocoapods文件夹
$ du -sh //查看下载进度
下载完毕后,所占磁盘的大小在600-900M不等。

安装成功标志:

CocoaPods 1.2.0.beta.1 is available.
To update use: sudo gem install cocoapods --pre[!] This is a test version we'd love you to try.For more information, see https://blog.cocoapods.org and the CHANGELOG for this version at https://github.com/CocoaPods/CocoaPods/releases/tag/1.2.0.beta.1
Setup completed

B. CocoaPods的使用

1.需要查看一下CocoaPods是否安装成功,这时只需在终端输入

pod search +第三方开源类库的名字+return确认即可
例如:$ pod search AFNetworking
:wq退出

2.进入项目文件夹

$ cd + 项目文件夹路径 (拖动项目文件夹到终端自动生成路径)

3.创建Podfile 文件

$ touch Podfile

4.编辑Podfile文件

$ vim Podfile

5. 在Podfile文件里面进行书写

platform :ios, '8.0' #用来设置所有第三方库所支持的iOS最低版本 target 'MyApp' do #MyApp 就是指项目名 pod ‘AFNetworking' end
ESC取消输入模式 :wq保存并退出

6.编辑Podfile文件之后,保存退出,然后终端输入命令:

$ pod install

Analyzing dependenciesDownloading dependenciesInstalling AFNetworking (3.1.0)Generating Pods projectIntegrating client project[!] Please close any current Xcode sessions and use xxxx.xcworkspace for this project from now on.Sending statsPod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

存在问题❎:
使用CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动
原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
[参考]http://blog.csdn.net/huang2009303513/article/details/42024163

打开项目文件夹发现自动生成.xcworkspace工作站

7.以后需要添加、更新、删除某个第三方库,只要编写好Podfile文件,在终端输入:

$ pod update --no-repo-update

穿梭山水间,化一羹缘!

你可能感兴趣的:(#Xcode8下cocoaPods的安装、使用)