在使用cocoapod导入Swift第三方时出现这样的问题:
Pods written in Swift can only be integrated as frameworks; adduse_frameworks!
to your Podfile or target to opt into using it. The Swift Pod being used is: Charts 一开始oc的配置方法:platform :ios, '8.0'pod 'Charts', '~> 2.1.6'123123结果报错了。
解决方法为:( 苹果不允许建包含swift的静态库,不同于OC可以使用平台版本的语言版本。 )platform :ios, '8.0'pod 'Charts', '~> 2.1.6'use_frameworks!123123这样就可以了。
新闻热点
疑难解答