码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 3.0 使用Cocopods 导入第三方报错

时间:2017-08-09 12:58:34      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:pod   target   .com   obj   安装   framework   frame   orm   写代码   

之前一直用Object-C 编写代码  用Cocopods导入第三方没出过什么问题

今天用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 Pods being used are: ExSwift

后来查证,需要在Podfile文件中加入use_frameworks! 

之前是这样写的:

platform :ios, ’10.3’
target ‘MySwiftDemo’ do
pod ‘ExSwift‘, ‘~> 0.1.9‘
end

 

加上 use_frameworks! 问题解决

platform :ios, ’10.3’
target ‘MySwiftDemo’ do
pod ‘ExSwift‘, ‘~> 0.1.9‘
use_frameworks!
end

 

PS:2017最新cocoaPods安装教程

Swift 3.0 使用Cocopods 导入第三方报错

标签:pod   target   .com   obj   安装   framework   frame   orm   写代码   

原文地址:http://www.cnblogs.com/zsc1993/p/7324194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!