一. 安装
1.打开终端
2. 安装Homebrew:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3. 获取最新版本: brew update
4. brew安装完成,安装carthage:brew install carthage
5. 如果你之前安装过carthage,需要更新carthage的话,先卸载carthage: brew uninstall carthage
6. brew install/uninstall(这个过程很快)```
![brew install/uninstall](https://img.haomeiwen.com/i1706253/4a20c501a15e4a04.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
二. 使用
-
打开项目路径:
-
创建并且编辑Cartfile文件: vim Cartfile, "i"切换到编辑模式,
输入你需要到的框架,例如:“github "SnapKit/SnapKit" ~> 3.0.2”
然后"esc"退出编辑模式,“shift”+“:”,最后输入“wq”,保存并推出编辑模式。 -
更新安装:“carthage update --platform ios” ```
三.项目配置
1. 导入框架:
选择“Targets”->“General”->“Linked Frameworks and Libraries”,
点击“+”号,选择“Add Other...”
在“[项目路径]/Carthage/Build/iOS”找到对应的“xxx.framework”,
单击,选择“open”,就加入完成。
2. 配置“Run Script”,方法如下
选择“Targets”->“Build Phases”,点击“+”号,选择“New Run Script Phase”
展开“Run Script”,将“Shell”下方区域修改成“/usr/local/bin/carthage copy-frameworks”
在“Input Files”加入你所有的框架,
格式如下“$(SRCROOT)/Carthage/Build/iOS/[你的框架名称]”
Linked Frameworks and Libraries
Run Script
Input Files
import
网友评论