0x01、首先安裝osx套件管理器homebrew
ruby -e "$(curl -fssl "
0x02、使用 homebrew 進行安裝carthage 安裝之前先對homebrew進行更新一下 不然可能會安裝到比較老版本的carthage
brew update
0x03、homebrew 安裝carthage
brew install carthage
到這裡已經把carthage工具安裝完畢
下面是開始使用carthage工具管理包(carthage 是由 swift 語言寫的,只支援動態框架,只支援 ios8+。 目前只支援github 或者git 相關管理源的庫)
0x04、新增 cartfile 檔案 寫法可引數官方例子 (
如:github "reactivecocoa/reactivecocoa" >= 2.3.1
0x05、再執行carthage update ;在執行carthage update
命令後會在根目錄建立乙個cartfile.resolved
檔案,這個檔案是生成後的依賴關係,不能修改,同時還會生成乙個
carthage 資料夾 裡面放的是編譯好的.framework檔案
0x06、把編譯好的.framework 檔案同時放到bild phases 下面的link binary with libraries裡和general 裡的embedded binaries裡
0x07、新增修改.gitignore檔案 新增 carthage作為忽然資料夾
例子:
Carthage的簡單安裝和使用
使用 homebrew 進行安裝 brew update brew install carthage 第一步,在專案的根目錄下新建乙個無字尾的cartfile檔案 第二步,開啟命令終端,cd到所在專案目錄,執行 carthage update platform ios no use binaries...
Carthage 安裝與使用
1 安裝 在終端下執行 brew install carthage 複製 2 配置第三方類庫 到目標工程目錄下建立 carthage 檔案 在終端上用vim寫好要配置的庫資訊 vim cartfile 複製 3.執行 carthage update platform ios 僅編譯 ios 平台 複...
iOS開發 Carthage安裝及使用
1.使用homebrew安裝carthage之前,先對其進行更新,不然可能會安裝到比較老的版本。sudo brew update 2.安裝carthage 3.檢視及公升級carthage版本 4.解除安裝carthage sudo brew uninstall carthage 5.建立空的car...