iOSCocoa Pods

CocoaPods创建公共库

2017-07-12  本文已影响21人  andyJi
git clone git@github.com:xxx/xxx.git
PodFileDirectory.png
pod spec create xxx git@github.com:xxx/xxx.git
CreatePodSpec.png

项目中不做子目录分层显示

Pod::Spec.new do |s|
s.name             = "xxx"
s.version          = "0.0.6"
s.summary          = "Custom Category used on iOS."
s.description      = <<-DESC
                     Custom Category used on iOS, which implement by Objective-C.
                     DESC
s.homepage         = "https://github.com/xxx/xxx"
s.license          = 'MIT'
s.author           = { "xxx" => "xxx@gmail.com" }
s.platform         = :ios, '7.0'
s.source           = { :git => "https://github.com/xxx/xxx.git", :tag => s.version }
s.source_files     = 'xxx/**/*'
s.requires_arc     = true
end

项目中做子目录分层显示

Pod::Spec.new do |s|
  s.name             = "xxx"
  s.version          = "0.0.6"
  s.summary          = "Custom Category used on iOS."
  s.description      = <<-DESC
                       Custom Category used on iOS, which implement by Objective-C.
                       DESC
  s.homepage         = "https://github.com/xxx/xxx"
  s.license          = 'MIT'
  s.author           = { "xxx" => "xxx@gmail.com" }
  s.platform         = :ios, '7.0'
  s.source           = { :git => "https://github.com/xxx/xxx.git", :tag => s.version }
  s.requires_arc     = true

# UIView 和 EasyLog 在工程中以子目录显示
  s.subspec 'UIView' do |ss|
    ss.source_files = 'xxx/UIView/*.{h,m}'
  end

  s.subspec 'EasyLog' do |ss|
    ss.source_files = 'xxx/EasyLog/*.{h,m}'
  end
  
end

s.source_files = ' ' 的多种写法

s.source_files = 'xxx/UIView/*.{h,m}'

表示xxx/UIView/目录下的所有.h.m文件


s.source_files = 'xxx/**/*'

表示xxx/目录下所有文件,包括子目录下所有文件。 **/*表示递归

当有多个文件时,应用,隔开

s.source_files = 'MMDrawerController/MMDrawerController.{h,m}', 'MMDrawerController/UIViewController+MMDrawerController*'

git push origin --tags
PushTags.png
pod lib lint
CheckPodSpec.png

pod Trunk 注册

pod trunk register xxx@gmail.com  'xxx'

检查成功与否,登录邮箱,点击确认,终端输入:

pod trunk me
PodTrunk.png
pod trunk push xxx.podspec
pod search xxx
PushSearchCheck.png

参考:

如何制作自己的Pod库

Guides Cocoapods

MMDrawerController

上一篇 下一篇

猜你喜欢

热点阅读