CocoaPods的安装和使用:
1、下载CocoaPods
sudo gem install cocoapods
pod setup
2、创建一个Podfile
touch Podfile
open -a Xcode Podfile
3、导入要用到的第三方库
platform :ios, '8.0'
pod 'AFNetworking', '~> 2.5'
上面的步骤都可在终端中创建并完成,但在你pod install时会出现以下错误警告
The dependency `AFNetworking (~> 2.0)` is not used in any concrete target.
解决方法:
打开项目中已经创建的Podfile文件,给导入的第三方库前面加上Target如下:
然后再pod install即可成功。