标签:
使用cocoapods集成第三方框架时提示
[!] The dependency `DTCoreText` is not used in any concrete target.
解决方案:podfile文件中的内容格式需要修改
platform :ios, ‘8.0‘
#use_frameworks!个别需要用到它,比如reactiveCocoa
target ‘MyApp‘ do
pod ‘AFNetworking‘, ‘~> 2.6‘
pod ‘ORStackView‘, ‘~> 3.0‘
pod ‘SwiftyJSON‘, ‘~> 2.3‘
end
里面的 MyApp 记得替换为自己攻城里面的target。这样就基本OK了,执行pod install / pod update 就都可以了
标签:
原文地址:http://www.cnblogs.com/shycie/p/5964340.html