cocospod 最近我使用添加依赖库时出现了
The dependency AFNetworking
is not used in any concrete target
所以网上搜了一下,解决方法:http://blog.csdn.net/sjl_leaf/article/details/50506057
以后就使用这样的格式创建了
platform :ios, '8.0'
use_framework!
def pods
pod 'AFNetworking','~>3.1.0'
end
target 项目名称' do
pods
end
比如: