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