創建 Podfile 文件
1.在終端輸入 touch Podfile復制以下內容到Podfile
use_frameworks!
platform :ios, '8.0'
pod 'AFNetworking'
pod 'SDWebImage'
pod 'SVProgressHUD'
保存退出
輸入以下命令安裝第三方框架
pod install
在終端提交添加的框架
將修改添加至暫存區
git add .
提交修改並且添加備注信息
git commit -m "添加第三方框架"
將修改推送到遠程服務器
git push
這樣就基本搞定了第三方框架的問題