解决方法:
在编辑Podfile时:
例如:
platform :ios,'7.0'
pod 'AFNetworking', '~> 3.1.0'
加上target:
例如:
platform :ios,’7.0'
target "targetName" do
pod 'AFNetworking', '~> 3.1.0'
end
注释:
targetName为你工程的名字
解决方法:
在编辑Podfile时:
例如:
platform :ios,'7.0'
pod 'AFNetworking', '~> 3.1.0'
加上target:
例如:
platform :ios,’7.0'
target "targetName" do
pod 'AFNetworking', '~> 3.1.0'
end
注释:
targetName为你工程的名字