如何使用CocoaPods?
1.对于未集成的项目
我们在终端命令行操作。
查找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文件
更新内容编辑格式如下
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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。