cocoapods导入框架出错 The dependency `FMDB` is not used in any concrete target

问题描述: The dependency `FMDB` is not used in any concrete target

解决办法:

官网是这样给推荐的: 
在创建Podfile的时候,用这种格式使用,

platform :ios, ‘8.0'

target 'MyApp' do  

pod 'AFNetworking', '~> 2.6’  

pod 'ORStackView', '~> 3.0’  

pod 'SwiftyJSON', '~> 2.3'

end

里面的 MyApp 记得替换为自己工程里面的target名称

原文地址:https://www.cnblogs.com/culing/p/5629199.html