安装Carthage有以下几种方法:
-
brew update
->brew install carthage
- 下载安装包:Carthage.pkg
- 下载源码:克隆源码
master
分支,并make install
(需Xcode 9.0
,Swift4.0
)
使用
-
在项目根目录下创建一个
Cartfile
文件终端命令:
touch Cartfile
-
使用Xcode打开Cartfile文件
终端命令:
open -a Xcode Cartfile
-
添加所需依赖库
如:github "AFNetworking/AFNetworking" ~> 3.0 ~> 3.0 :表示使用3.0以上低于4.0的版本 == 3.0 :表示只使用3.0版本 >= 3.0 :表示使用3.0或更高的版本
-
在终端下运行
carthage update
carthage update
会更新支持的所有平台版本
若需要更新指定平台版本,如:iOS 请使用carthage update --platform iOS
命令 -
导入目录下Carthage目录,在
Target—>Build Setting—>Framework Search Path
添加路径$(SRCROOT)/Carthage/Build/iOS
以自动搜索Framework
也可将编译好的
.framework
直接拖入项目中