一、Cocoapods介绍
用来集中管理第三方库.
作用:导入第三方库 和 检测并更新第三方库
优点:无论是ARC的第三方还是MRC的第三方都可以通过cocoapods统一管理,大大提高开发效率。
二、Cocoapods的安装
1.更换ruby镜像地址--速度会加快
删除镜像 gem sources --remove https://rubygems.org/
添加淘宝镜像 gem sources -a https://ruby.taobao.org/
查看当前镜像 gem sources -l
2.安装cocoa pods
安装 sudo gem install cocoa pods
3.验证安装是否成功
命令行 pod 出现pod的参数即可。
三、安装失败解决方案
1.卸载重新安装gem
卸载gem sudo gem uninstall --all
安装gem sudo gem install cocoapods
如果碰到安装失败就修改一下安装路径,再进行安装即可。
mkdir -p $HOME/Software/ruby
export GEM_HOME=$HOME/Software/ruby
gem install cocoapods
如果碰到安装失败,也可以这样操作(指定安装目录)
sudo gem install -n /usr/local/bin cocoapods
2.更新gem
更新gem sudo gem update --system
四、cocoa pods命令
4.1为项目初始化pod
pod init
4.2为项目安装pod
pod install 直接从网络下载
pod install --no-repo-update 先从本地加载,没有就在网络加载(速度快)
4.3更新第三方库 和 新添加第三方库
pod update
4.4搜索第三方插件
pod search xxx
4.5查看本地存在的第三方库
pod cache list
五、iOS项目配置cocoa pods
1.命令行进入到项目文件夹中
2.执行pod init 会生成 Podfile 文件
3.xcode 打开 Podfile 文件
4.配置自己想要的第三方类库即可
5.配置完成后执行 pod install 进行安装
6.项目中多了.xcworkspace文件,打开这个文件即可。
7.添加新的第三方或者更新第三方,修改Podfile文件,执行pod update。
六、配置第三方库
第三方库逗号后边是版本,不写默认当前最高版本
platform :ios, '8.0'
pod 'AFNetworking','~> 2.6.1'
pod 'SDWebImage', '~> 3.7.3'
pod 'MMDrawerController'
7.pod 命令
7.1pod帮助指令
➜ ~ pod --help
Usage:
$ pod COMMAND
CocoaPods, the Cocoa library package manager.
Commands: pod的所有子命令
+ cache Manipulate the CocoaPods cache
+ init Generate a Podfile for the current directory.
+ install Install project dependencies to Podfile.lock versions
+ ipc Inter-process communication
+ lib Develop pods
+ list List pods
+ outdated Show outdated project dependencies
+ plugins Show available CocoaPods plugins
+ repo Manage spec-repositories
+ search Search for pods.
+ setup Setup the CocoaPods environment
+ spec Manage pod specs
+ trunk Interact with the CocoaPods API (e.g. publishing new specs)
+ try Try a Pod!
+ update Update outdated project dependencies and create new
Podfile.lock
Options: 选项
--silent Show nothing
--version Show the version of the tool
--verbose Show more debugging information
--no-ansi Show output without ANSI codes
--help Show help banner of specified command
7.2pod子命令的帮助指令
➜ ~ pod update --help
Usage:
$ pod update [POD_NAMES ...]
Updates the Pods identified by the specified `POD_NAMES`. If no
`POD_NAMES` are specified it updates all the Pods ignoring the contents of
the Podfile.lock. This command is reserved to the update of dependencies
and pod install should be used to install changes to the Podfile.
Options: 选项
--project-directory=/project/dir/ The path to the root of the project
directory
--no-clean Leave SCM dirs like `.git` and `.svn`
intact after downloading
--no-integrate Skip integration of the Pods libraries
in the Xcode project(s)
--no-repo-update Skip running `pod repo update` before
install
--silent Show nothing
--verbose Show more debugging information
--no-ansi Show output without ANSI codes
--help Show help banner of specified command
8.pod-Xcode使用
1.下载
1.1github 下载地址:
https://github.com/CocoaPods/Xcodeproj
1.2Alcatraz 中搜索 Cocoapods
1.3安装插件
8.1为项目初始化pod
8.2填写第三方库
8.3为项目安装pod
8.4安装完成通过pod打开项目
8.5修改pod增删第三方库
8.6更新pod库