1.下载安装CocoaPods
sudo gem install cocoapods
下载之前先把ruby的源指向淘宝的地址:https://ruby.taobao.org/
2.使用CocoaPods
新建一个项目,使用终端,cdd到项目总目录,输入vim Podfile,键盘输入i进入编辑模式,新版的输入
platform :ios,'8.0'
use_frameworks!
inhibit_all_warnings!
target 'testapp'
pod 'AFNetworking', '~> 3.1.0'
//可以多pod几个
testapp 是你的项目名称
按ESC,输入:wq保存并退出
接下来就是 pod install,OK,大功告成.