CocoaPods 是 第三方库管理器,可以很优雅的添加数千个库,使项目中的第三方框架更新更加方便快捷
一、CocoaPods 安装
打开 终端,输入下面命令,安装时需要输入密码。
sudo gem install cocoapods
Installing………… Installing………… Done installing documentation for ………… // 看到这样的语句就表示安装完成。如果你在安装过程中遇到的其他问题,访问 Installing CocoaPods guides .
二、CocoaPods 使用
打开终端,cd 到你项目路径 ,
eg :
$ cd /……/MyApp
创建.profile
文件
$ pod init
编辑.profile
文件
$ vi Podfile.profile
Podfile文件内容:
platform :ios, '8.0' // 软件支持最低系统版本 即: iOS Deployment Target 8.0 target 'MyApp' do // "MyApp" 即 你的工程名字。 pod 'AFNetworking', '~> 2.6' // AFNetworking 2.6版本的库 pod 'ORStackView', '~> 3.0' pod 'SwiftyJSON', '~> 2.3' end执行以下命令,下载 .profile配置好的第三方库
$ pod install
编译
每次必须以 MyApp.xcworkspace 打开你原来的项目, command+B 编译
然后,直接在你工程里 引用 相关的类。$ open MyApp.xcworkspace
#import <Reachability/Reachability.h>
如果发现本地的库版本低于Github上的版本,可以运行以下命令:
$ pod repo update
资料参考