iOS CocoaPods

一、简介

1、CocoaPods 是开发 OS X 和 iOS 应用程序的第三方库的依赖管理工具
2、CocoaPods是用 Ruby 构建的,并由若干个 Ruby 包 (gems) 构成的
3、项目的依赖项在名为Podfile的文本文件中指定
4、CocoaPods将仓库存储在~/.cocoapods

二、安装

1、升级Gem

Gem是管理Ruby库和程序的标准包,它通过Ruby Gem(如 http://rubygems.org/ )
源来查找、安装、升级和卸载软件包,如果它的版本过低可能导致安装失败

sudo gem update --system

2、查看源路径

gem sources -l

3、安装(更新)Cocoapods

sudo gem install cocoapods
sudo gem install cocoapods -n /usr/local/bin

4、卸载cocoapods

gem uninstall cocoapods

5、查看pod版本

pod --version

6、设置pod仓库

所有的项目的podspec文件都托管在https://github.com/CocoaPods/Specs。第一次执行pod setup时,CocoaPods会将这些podspec索引文件更新到本地的 ~/.cocoapods/目录下,这个索引文件比较大,所以第一次更新时非常慢

pod setup

三、使用

用CocoaPods创建一个新的Xcode项目,需要如下几步:
1、使用Xcode创建新Project
2、打开Terminnal,cd到工程目录
3、运行pod init创建podfile
4、打开podfile,编辑并添加依赖库
5、运行pod install

1、初始化pod,生成Podfile文件

pod init
pod init.png

2、编辑Podfile

Podfile文件描述了Xcode Project中Target的依赖,Podfile初始状态:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'CocoaPodsTest' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for CocoaPodsTest

  target 'CocoaPodsTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'CocoaPodsTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

3、安装pod

1、首次运行pod install,下载并安装新的pod,生成并在Podfile.lock文件中记录每个pod的版本
2、非首次执行pod install,对于Podfile.lock文件中列出的pod,下载且不尝试检查最新版本
3、非首次执行pod install,对于Podfile.lock文件中未列出的pod,搜索Podfile中描述的确切版本

pod install
pod install.png

4、检查pod

1、将列出Podfile.lock文件中pod的最新版本

pod outdated

5、更新pod

1、在符合Podfile中的限制下,更新pod到最新版本
2、将生成新的Podfile.lock
3、运行pod update,更新所有pod

pod update [PodName]

四、幕后发生了什么?

1、创建或更新workspace
2、添加project到workspace
3、添加CocoaPods静态库project到workspace
4、添加libPods.a到target
5、添加CocoaPods Xcode configuration文件到project
6、更改target configurations基于CocoaPods
7、添加script 复制pods中的资源到app bundle中

五、Podfile

1、Podfile文件语法:

#pod 'AFNetworking' //不显式指定依赖库版本,表示每次都获取最新版本
#pod 'AFNetworking', '2.0' //只使用2.0版本
#pod 'AFNetworking', '>2.0′ //使用高于2.0的版本
#pod 'AFNetworking', '>=2.0′ //使用大于或等于2.0的版本
#pod 'AFNetworking', '<2.0′ //使用小于2.0的版本
#pod 'AFNetworking', '<=2.0′ //使用小于或等于2.0的版本
#pod 'AFNetworking', '~>0.1.2′ //使用大于等于0.1.2但小于0.2的版本,相当于>=0.1.2并且<0.2.0
#pod 'AFNetworking', '~>0.1′ //使用大于等于0.1但小于1.0的版本
#pod 'AFNetworking', '~>0′ //高于0的版本,写这个限制和什么都不写是一个效果,都表示使用最新版本

2、Podfile文件引入:

// 本地集成测试
pod 'Name', :path => '~/code/Pods/'
// 远程集成测试,默认master分支
pod 'NAME', :git => 'https://example.com/URL/to/repo/NAME.git'
// 指定branch
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :branch => 'dev'
// 指定tag
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :tag => '0.7.0'
// 指定commit
pod 'AFNetworking', :git => 'https://github.com/gowalla/AFNetworking.git', :commit => '082f8319af'
// 
pod 'JSONKit', :podspec => 'https://example.com/JSONKit.podspec'

五、Podfile.lock文件是什么?

1、此文件在第一次运行pod install后生成,记录和跟踪每个pod的版本。
2、每次运行pod install添加新的pod,在Podfile.lock中添加记录。
3、运行pod update会生成新的Podfile.lock
4、由于Podfile.lock,之后在另一台机器上运行pod install,即使有新版本,也会安装Podfile.lock中指定的版本

六、pod install vs. pod update

许多人刚使用CocoaPods时,认为只在安装时使用pod install,最后都使用pod update进行更新,这是错误的。

1、pod install背后做了什么?

pod install --verbose

1、Analyzing dependencies
2、Inspecting targets to integrate
3、Finding Podfile changes
4、Resolving dependencies of Podfile
5、Comparing resolved specification to the sandbox manifest
6、Downloading dependencies
7、Generating Pods project
8、Integrating client project

2、vs

pod install
1、项目第一次安装时使用
2、添加或删除pod时使用
pod update
1、仅在更新pod时使用pod update [PodName]

七、Pods目录是否应该被加入到版本管理中?

首先,Podfile和Podfile.lock文件必须加入版本管理中,建议将Pods目录加入版本管理中,不要将其添加到.gitignore文件中。

加入的优点

1、clone repo 之后,即使机器没有安装cocoapod,该项目也可以运行。不需要运行pod install,也不依赖网络。
2、Pod总是可用的,即使Pod源关闭
3、clone repo 之后,pod与原始相同

不加入的优点

1、repo小而轻
2、sources可用即可重新创建相同的安装
3、merge操作不会冲突

八、CocoaPods私有库

1、制作pod

1、创建pod

pod lib create [pod name]
pod lib create.png
$ tree MyLib -L 2

  MyLib
  ├── .travis.yml
  ├── _Pods.xcproject
  ├── Example
  │   ├── MyLib
  │   ├── MyLib.xcodeproj
  │   ├── MyLib.xcworkspace
  │   ├── Podfile
  │   ├── Podfile.lock
  │   ├── Pods
  │   └── Tests
  ├── LICENSE
  ├── MyLib.podspec
  ├── Pod
  │   ├── Assets
  │   └── Classes
  │     └── RemoveMe.[swift/m]
  └── README.md

Your demo & tests will need to include references to headers using the #import <MyLib/XYZ.h> format.(使用<>方式导入)
[!] Note : Due to a Development Pods implementation detail, when you add new/existing files to Pod/Classes or Pod/Assets or update your podspec, you should run pod install or pod update.(更改源文件后执行install)

2、在Pods下添加实际文件,cd到Example,执行pod install,在Example中测试
!这里有可能遇到头文件找不到的坑,clean下工程,重新运行

3、在集成工程中测试Pod,编辑集成工程Podfile,install,测试

platform :ios, '9.0'

target 'CocoaPodsTest' do
  # Comment the next line if you don't want to use dynamic frameworks
  # use_frameworks!

  # Pods for CocoaPodsTest
  pod 'AFNetworking'
  pod 'JRXFoundation', :path => '/Users/kongzhaoyang/Desktop/CocoaPods/JRXFoundation'

  target 'CocoaPodsTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'CocoaPodsTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

4、修改podspec,包括version、summary、homepage、source等信息

5、创建远程仓库,关联本地仓库
!创建时选择Public
!创建时不要选择添加一个README文件(添加README文件相当于执行了一次Initial commit,导致不能自动合并,需要强制push)

git add .
git commit -m""
//  关联远程仓库
git remote add origin [Git URL]
git push -u origin master
git push -u origin master -f

6、远程校验,编辑Podfile

pod 'JRXFoundation', :git => [Git URL]

7、校验
So you've got your library ready to go. First you should check if the Podspec lints correctly, as you can't deploy with errors. This can be done with two methods, pod lib lint and pod spec lint. The difference between them is that pod lib lint does not access the network, whereas pod spec lint checks the external repo and associated tag.

//
pod lib lint
pod lib lint --allow-warnings
pod spec lint
pod spec lint --allow-warnings

8、创建Tag并push
!tag与version相同

git tag -m "first release V0.0.1" 0.0.1
git push --tags

9、在集成工程中测试podspec,编辑集成工程Podfile,install,测试

platform :ios, '9.0'

target 'CocoaPodsTest' do
  # Comment the next line if you don't want to use dynamic frameworks
  # use_frameworks!

  # Pods for CocoaPodsTest
  pod 'AFNetworking'
  pod 'JRXFoundation', :podspec => '/Users/kongzhaoyang/Desktop/CocoaPods/JRXFoundation/JRXFoundation.podspec'

  target 'CocoaPodsTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'CocoaPodsTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

总结创建源码Pod步骤如下:
1、Create Lib
2、Add File
3、Local Test
4、Edit Podspec
5、Git Remote
6、Git Test
7、Pod Lint
8、Push Tag
9、Podspec Test

2、制作spec库

1、创建远程仓库
!创建时选择Public
!创建时选择添加一个README文件

2、将spec repo添加到CocoaPods目录

pod repo add [Spec Repo Name] [Git URL]

3、检查添加操作是否成功

cd ~/.cocoapods/repos/[Spec Repo Name]
pod repo lint .

4、添加spec到spec repo中

pod repo push [Spec Repo Name] [Podspec Name]

3、使用pod

编辑集成工程Podfile,install,测试

platform :ios, '9.0'

target 'CocoaPodsTest' do
  # Comment the next line if you don't want to use dynamic frameworks
  # use_frameworks!

  # Pods for CocoaPodsTest
  pod 'AFNetworking'
  pod 'JRXFoundation', :source => '[Spec Repo URL]'

  target 'CocoaPodsTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'CocoaPodsTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

4、升级pod

1、添加或修改文件,并在Demo中测试(如1-2)
2、修改podspec文件,主要修改version(如1-4)
3、提交代码到远端,并打Tag(如1-5)
4、校验pod,pod lib lintpod spec lint(如1-6)
5、添加spec到spec repo中,pod repo push [Spec Repo Name] [Podspec Name(如2-4)
6、集成工程中更新pod,pod update [PodName]

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容