CocoPods 使用流程
- cd ~/paht
- touch Podfile
- vim Podfile
- 按照 Podfiel 格式, 写入需要的依赖库
- pod install
- 等待安装, 重新打开项目即可
Carthage 使用流程
安装流程
brew update
brew install carthage
cd ~/path
touch Cartfile
open -a Xcode Cartfile / 其实使用 Vim 打开也一样, 只不过是进行单纯的文本编辑而已
需要按照 Carthage 的语法规则填写对应的三方库的 git 地址以及版本号
carthage update --platform iOS
因为采用了和 cocopod 不一样的三方库导入形式, 因此, 进行完以上步骤之后, 只是将所有的三方库生成了二进制的库文件, 因此, 还需要在项目中将对应的二进制文件进行导入, 似乎还要在 Build Phase 中添加对应的 Run Script... 用的时候再说吧