CocoaPods 简要使用笔记

1. 常用指定使用

1.1 指定库使用的 Swift 版本

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if target.name == 'ActiveLabel'
            target.build_configurations.each do |config|
                config.build_settings['SWIFT_VERSION'] = '3.2'
            end
        end
    end
end
target 'MyTarget' do
    use_frameworks!

    # Post installation script that enables the Swift 4.2 compiler's
    # legacy 4.1 mode for 4.2-incompatible pods
    post_install do |installer|
      incompatiblePods = ['PodA', 'PodB']

      installer.pods_project.targets.each do |target|
          if incompatiblePods.include? target.name
              target.build_configurations.each do |config|
                  # Replace with whichever Swift version you're migrating from
                  config.build_settings['SWIFT_VERSION'] = '4.1'
              end
          end
      end
    end

    pod 'XXXX'
    pod 'XXXX'
end

可以通过 Podfile 设置旧的还没支持 Swift4 的库指定用 Swift3.2 编译。
当然也可以一个个的在 Target 的 Build Settings 中设置 Swift complie language version


1.2 指定在 Debug 下安装库

pod 'GDPerformanceView-Swift', '~> 1.2.0', :configurations => ['Debug']

1.3 指定 Master等分支版本

pod 'ActiveLabel', :git => 'https://github.com/optonaut/ActiveLabel.swift', :branch => 'master'

1.4 指定本地目

pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"

2. 发布 CocoaPod 库

1.如果已经本地已经有了建好的 CocoaTouchFrameWork 的 project,那可以在项目目录下执行:

pod spec create YourFrameworkName

如果本地没有建好的project可以执行:

pod lib create YourFrameworkName
  1. 编辑该目录下自动创建好的YourFrameworkName.podsepc文件
  2. 发布库:
    1. Github 上创建好库;
    2. clone 到本地,并把之前的代码拷贝到次 clone 的目录;
    3. 更新.podsepc文件里对应的 git URL 为你在 Github 的地址
    s.source = { :git => "https://github.com/xxx/xxx.git", :tag => "#{s.version}" }
    
    1. 把代码 push 上去;
    2. 打标记
    git tag 0.1.0
    git push --tags
    
    1. 注册 truck
    pod trunk register xxx@xxx.com 'xxxxx'
    
    1. 上面 truck register 会发一封邮件给你,去邮件里验证。然后就可以
    pod trunk push --allow-warnings
    
  3. 管理库:
    查看自己的信息
    pod trunk me
    
    添加管理维护者
    pod trunk add-owner [库的名字] [新管理者的邮件]
    pod trunk remove-owner [库名] [邮件]
    
    查看库信息
    pod trunk info [库名]
    
    小结:
    在验证和上传你的podspec文件到trunk之前,需要将你的源码push到Github上,tag一个版本号并发布一个release版本,这样podspec文件中的s.source的值才能是准确的:
    git add -A && git commit -m "Release 1.0.1."  
    git tag '1.0.1'  
    git push --tags  
    git push origin master
    这两条命令是为pod添加版本号并打上tag:
    set the new version to 1.0.1
    set the new tag to 1.0.1
    
  4. 更新发布:
    1. 修改podspec文件tag版本号,也就是修改s.version的值,提交修改后的代码和podspec文件到Github仓库,重新发布一个Release版本
    2. 进入项目根目录,校验podspec文件,校验成功后,重新push podspec文件到CocoaPods官方仓库,命令如下:
    pod cache clean --all // 清除pod缓存
    pod lib lint xxx.podspec --allow-warnings // 校验
    pod trunk push xxx.podspec --allow-warnings // 提交到CocoaPods官方仓库
    

遇到问题:
pod lib lint 在本地执行是成功的
但是在 pod trunk push 的时候一直报错:

`source_files` pattern did not match any file.

后来把文件路径修改为以.git文件所在级别后,本地lib lint不成功,但是push却成功

"Source/*.{h,m,swift}"修改成:
"HSCycleGalleryView/**/*.{h,m,swift}"

本人预测是pod lib lint 检测的source_files是针对本地.podspec所在的文件目录;而pod tunk push是检测github上的文件目录

#可以详细输出日志信息
pod trunk push xx.podspec --verbose

podspec文件指定Swift版本:
s.swift_version = '>= 3.2, <= 4.0'

3. SVN 私有库

按照SVN 工作流规范,在项目名称目录下建立三个文件夹

  • branches
  • tags
  • trunk
root
|-- trunk
|-- branches
|   |-- v1.0-dev
|   |-- v1.0-stage
|   |-- v2.1-dev
|   |-- v2.1-stage
|   |-- v2.1.1-stage
|   `-- ...
`-- tags
    |-- v1.0.0
    |-- v1.1.0
    |-- v1.1.1
    |-- v2.0.0
    `-- ...

在下面目录下 pod lib create XXX

/Users/Hanson/Desktop/ios-svn/ios-app/DingdongExtensionKit/trunk/

当库开发完成后,利用svn工具(比如cornerstone),在右击runk 目录建立 tag 比如 0.1.1

# DingdongExtensionKit.podspec
Pod::Spec.new do |s|
  s.name         = "DingdongExtensionKit"
  s.version      = "0.1.1"
  s.summary      = "DingdongExtensionKit."
  s.homepage     = "https://github.com/zyphs21/"
  s.author       = { "zyphs21" => "hansenhs21@live.com" }
  # 注意这里使用 svn=> 以及指向之前 创建的tag
  s.source       = { :svn => "http://dev.vanyun.cn:8000/svn/vanyun/Dingdong/Projects/ios-app/DingdongExtensionKit/", :tag => s.version.to_s }
  s.source_files  = "DingdongExtensionKit/**/*.{swift}"
end

这个库就算创建好了,使用的时候在Podfile

# pod 'DingdongUserKit', :path => '/Users/Hanson/Desktop/ios-svn/ios-app/DingdongUserKit/trunk/'
pod 'DingdongExtensionKit', :svn => 'http://dev.vanyun.cn:8000/svn/vanyun/Dingdong/Projects/ios-app/DingdongExtensionKit/', :tag => '0.1.1'

4. Pod 里加入图片资源

Pod::Spec.new do |s|
  s.name           = "YMPhotoBrowser"
  s.version        = "1.0.0"
  s.summary        = "YMPhotoBrowser is a modern looking photo gallery written in Swift for iOS."
  s.homepage       = "https://github.com/zyuanming/YMPhotoBrowser"
  s.license        = { :type => 'MIT', :file => 'LICENSE' }
  s.author         = { "zyuanming" => "zyuanming@outlook.com" }
  s.swift_version  = '4.0'
  s.ios.deployment_target = '8.0'
  s.source         = { :git => "https://github.com/zyuanming/YMPhotoBrowser.git", :tag => "#{s.version}" }
  s.source_files   = "YMPhotoBrowser/*"
  
  # 使用Resource Bundle
  s.resource_bundles = { 'Image' => ['YMPhotoBrowser/Resources/*.png']}
  
  s.dependency 'Kingfisher', '~> 4.5.0'
end

然后使用图片的时候:

let frameworkBundle = Bundle(for: type(of: self))
// 这里对应 s.resource_bundles = { 'Image' => ['YMPhotoBrowser/Resources/*.png']}
let resourceBundleURL = frameworkBundle.url(forResource: "Image", withExtension: "bundle")
let resourceBundle = Bundle(url: resourceBundleURL!)
let image = UIImage(named: "photo_dismiss", in: resourceBundle, compatibleWith: nil)

5. Pod Update和outdated

每当你运行pod outdated命令时,CocoaPods会列出所有在Podfile.lock中的有新版本的pod库。这意味着当你对这些 pod 使用 pod update PODNAME 时,他们会更新(只要新版本仍然遵守你在Podfile中做的类似于pod 'MyPod', '~>x.y'这样的限制)

6. 版本号指定

= 0.1 Version 0.1.
> 0.1 Any version higher than 0.1.
>= 0.1 Version 0.1 and any higher version.
< 0.1 Any version lower than 0.1.
<= 0.1 Version 0.1 and any lower version.
~> 0.1.2 Version 0.1.2 and the versions up to 0.2, not including 0.2. This operator works based on the last component that you specify in your version requirement. The example is equal to >= 0.1.2 combined with < 0.2.0 and will always match the latest known version matching your requirements.
~> 0.1.3-beta.0 Beta and release versions for 0.1.3, release versions up to 0.2 excluding 0.2. Components separated by a dash (-) will not be considered for the version requirement.
A list of version requirements can be specified for even more fine grained control.
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容