Carthage的安装与使用

2018-03-23  本文已影响13人  娘亲Joanna

preface:

OC里面我们使用 CocoaPods 来集中管理我们常用的第三方库,但是在Swift里面我会就会使用Carthage来管理我们在swift中常用的一些第三方。

Carthage 的安装和使用只要是一下几个步骤:


github "Alamofire/Alamofire" ~> 4.7
在 Carfile 中按一下格式,填写你要下载的第三方
 carthage update 

编译所有平台


下载Carfile里面的第三方

只编译iOS平台

carthage update --platform iOS

(在这个步骤中,遇到了个bug, 我先把.frameword 拖到项目中,然后Linked Frameworks and Libraries 会显示Alamofire.framework ) ,然后我在Embedded Binaries 添加了Alamofire.framework , Linked Frameworks and Libraries 里又增加了个Alamofire.framework. 运行项目报错,是说找不到Alamofire.frame. 删除了Linked Frameworks and Libraries 里所有的 Alamofire.framework 就可以了)

$(PROJECT_DIR)/Carthage/Build/iOS

参考来自Originalee

上一篇下一篇

猜你喜欢

热点阅读