[!] The dependency `AFNetworking (= 2.5.0)` is not used in any concrete target.
推测是因为没有设置对应的target造成,target是一分代码的相关配置,相当于他的环境的一些列配置;所以设置一下target即可;
platform :ios, '8.0'
target 'MyApp' do
pod 'AFNetworking', '~> 2.6'
pod 'ORStackView', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3'
end
另一种写法是
platform :ios, '8.0'
def pods
pod 'AFNetworking', '~> 2.6'
end
target 'MyApp' do
pods
end
另外补充一下target的知识
可以认为一个target对应一个新的product(基于同一份代码的情况下)
虽然代码是同一份, 但编译设置(比如编译条件), 以及包含的资源文件却可以有很大的差别. 于是即使同一份代码, 产出的product也可能大不相同
详细请飞往:http://blog.csdn.net/yongyinmg/article/details/23695999