引入第三方 Cocopods
用以前的方法会提示[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target
终端
1.pod search 下载的文件名
找到 需要复制的
2.cd 下载到的文件
3.vim podfile
粘贴复制好的
4. i编辑
platform :ios, ‘8.0’ //版本
use_frameworks!
target 'AAA’ do //AAA为工程名
pod 'AFNetworking', '~> 2.6’ //需要导入的第三方
end
esc 退出编辑 :wq 编辑保存后退出
5.pod install
pod install --verbose --no-repo-update