首页 > 学院 > 开发设计 > 正文

Pods written in Swift can only be integrated as frameworks

2019-11-09 15:40:32
字体:
来源:转载
供稿:网友

在使用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的配置方法:

platform :ios, '8.0'pod 'Charts', '~> 2.1.6'123123

结果报错了。

解决方法为:( 苹果不允许建包含swift的静态库,不同于OC可以使用平台版本的语言版本。 )platform :ios, '8.0'pod 'Charts', '~> 2.1.6'use_frameworks!123123

这样就可以了。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表