原因:CocoaPods升级后,Podfile文件的内容格式要求发生了变化,必须指出指出所用第三方库的target
解决:
platform :ios, '8.0'
target 'xxxx' do
pod 'AFNetworking', '~> 3.1.0'
end
原因:CocoaPods升级后,Podfile文件的内容格式要求发生了变化,必须指出指出所用第三方库的target
解决:
platform :ios, '8.0'
target 'xxxx' do
pod 'AFNetworking', '~> 3.1.0'
end