为了确定AFNetworking是否支持CocoaPods,可以用CocoaPods的搜索功能验证一下。在终端中输入:
$ pod search AFNetworking
cd 到项目目录下
vimPodfile
platform :ios, '7.0'
pod "AFNetworking", "~> 2.0"
保存退出 :wq
安装 $ pod install
更新 $ pod updatepod update + 你想升级的那个库的名字 例如: pod update MJRefresh
最近出现这么一个问题
[!] The dependency `AFNetworking (~> 2.0)` is not used in any concrete target.
解决方式为将Podfile 内填写格式改为如下: (TestThirdParty 改为自己项目名)
platform :iOS, '8.0'
use_frameworks!
target 'TestThirdParty' do
pod 'AFNetworking', '~> 2.6'
//可以连续pod多个第三方
// pod 'B','版本'...
end