cocoaPods:[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.

今天新机装cocopods时,等安装完毕发觉出现[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.这个警告。看了下版本: 1.0.1 额...


解决方式为将Podfile 内填写格式改为如下: (TestThirdParty 改为自己项目名)

platform :ios, '8.0'

use_frameworks!

target 'TestThirdParty' do

pod 'AFNetworking', '~> 3.1.0'      

//可以连续pod多个第三方 

// pod 'B','版本'...                     

end

你可能感兴趣的:(cocoaPods:[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.)