使用cocoapods添加git内静态库需要

在使用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'

结果报错了。

英文不好是硬伤啊,大概意思是:苹果不允许建包含swift的静态库,不同于OC可以使用平台版本的语言版本。

针对这种问题,可以做这样的处理:

platform:ios,'8.0'

pod'Charts','~> 2.1.6'

use_frameworks!


这样就可以了。

你可能感兴趣的:(使用cocoapods添加git内静态库需要)