安装Carthage命令:brew install carthage
1)先进入到项目所在的文件夹
cd ~/Path/Project
2)创建一个空的Carthage文件
touch Cartfile
3)打开Carthage文件编辑
open Cartfile
4)编辑cartfile文件,例如要安装Alamofire框架
github "Alamofire/Alamofire" "5.0.0.beta.1"
5)保存并关闭cartfile文件,使用cartfile安装框架
Carthage update --platform iOS
6)打开Carthage查看生成的文件目录
open Carthage
--------------------下载下来的文件目录说明---------------------------
Carthage/Checkouts目录:从github获取的源代码
Carthage/Build目录:编译出来的Framework二进制代码库 ----用于导入
注:
如果不存在Build目录,解决方案:Xcode->Preferences->Locations->Command line Tools
-----------------------------------------------------------------
7)配置项目
打开项目,点击Target -> Build Phases -> Link Library with Libraries选择Carthage/Build目录中导入的framework
8)添加编译的脚本
(1)点击Build Phases,点击“+” -> New Run Script Phase
(2)添加脚本/usr/local/bin/Carthage copy-frameworks
(3)添加“Input Files” $(SRCROOT)/Carthage/Build/iOS/Alamofire.framework
9)在项目中使用第三方库
#import Alamofire