今天新機(jī)裝cocopods時(shí),等安裝完畢發(fā)覺出現(xiàn)[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.這個(gè)警告??戳讼掳姹? 1.0.1 額...

解決方式為將Podfile 內(nèi)填寫格式改為如下: (TestThirdParty 改為自己項(xiàng)目名)
platform :ios, '8.0'
use_frameworks!
target 'TestThirdParty' do
pod 'AFNetworking', '~> 3.1.0' ? ? ?
//可以連續(xù)pod多個(gè)第三方?
// pod 'B','版本'... ? ? ? ? ? ? ? ? ? ??
end