1.什么是CocoaPods?
CocoaPods是iOS最常用的类库管理工具。
2.CocoaPods的下载安装
请自行Google,百度。
3.CocoaPods的使用
常用命令:以AFNetWorking为例
打开终端:
pod search AFNetWorking (查找类库)
(1)cd 到工程目录下
(2)vim podfile (创建或编辑podfile)
-1>platform:ios,'7.0'
-2>pod'AFNetworking'
-3>Esc :wq保存退出
(3)执行pod install --verbose --no-repo-update 等待完成
至此AFNetWorking已经添加到工程中