如何使用CocoaPods?
1.對於未集成的項目react
咱們在終端命令行操做。 查找cocoaPods是否支持的庫。 $ pod search AFNetworking cd 到該項目根目錄 cd /Users/admin/Desktop/test //編輯podfile文件 $ vim Podfile (輸入I進入編輯模式,按esc離開,並輸入:wq保存)
編輯格式以下 platform :ios, '7.1' #use_frameworks!個別須要用到它,好比reactiveCocoa def pods pod 'AFNetworking', '~> 3.0' pod 'MBProgressHUD', '~> 0.9.1' pod 'SDWebImage', '~>3.7' pod 'YYModel' pod 'MJRefresh' pod 'EaseMobSDKFull', '~> 2.1.7' end target 'CollegeStudents' do pods end //輸入更新下載命令 $ pod install
2.對於已經集成過的項目
使用xcode 打開工程找到podfile文件ios
更新內容編輯格式以下 platform :ios, '7.1' #use_frameworks!個別須要用到它,好比reactiveCocoa def pods pod 'AFNetworking', '~> 3.0' pod 'MBProgressHUD', '~> 0.9.1' pod 'SDWebImage', '~>3.7' pod 'YYModel' pod 'MJRefresh' pod 'EaseMobSDKFull', '~> 2.1.7' end target 'CollegeStudents' do pods end
cd 到該項目根目錄 cd /Users/admin/Desktop/test //輸入更新下載命令 $ pod install