CocoaPods的安装 https://guides.cocoapods.org/using/getting-started.ht1.ml
1. 用Xcode 创建一个项目Test
2.在Test文件下面创建一个Podfile的文件
文件内容:
platform :ios,'8.0' //xcode版本
target 'Test' do //项目Target
pod 'GuardPost-ObjectiveC', '~>0.1.1' //要下载的东东
end //结束
3. shell cd 项目文件夹
执行 pod install