Pod组件化

总的来说分成三部

1、直接使用代码源pod集成
2、pod添加本地资源,将spec文件上传到本地资源中
3、注册trunk账号,将spec文件直接上传到master


第一部分功能实现

1.首先在gitlab或gitlab上创建一个空项目 ZHPodTest
2.打开终端cd到任意目录输入如下命令(生成pod模版)

MacBook-Pro:Desktop zhanglei$ pod lib create ZHPodTest

3.执行完命令会有如下几个选项,按需求填写


4.当前地址下会自动生成一个模版工程,如下图所示Example就是我们总工程文件夹,ZHPodTest就是我们要上传的组件化部分。其中AssetsClasses分别放图片和我们要添加的代码

5.写代码添加到Classes文件夹,运行Example调试,注意调试前执行命令更新修改的文件:

MacBook-Pro:Example zhanglei$ pod update

注意
1、pod update无效的化 原因是Podfile.lock文件没有检测到更改,可以修改Podfile重新pod install

2、使用swift编写一定要注意啦啦啦啦
每个类文件如果想暴露出去,则需要在代码类名前添加修饰符即(public class xxx或者open extension xxx),添加public、open,而extension不能用open修饰所以用plublic修饰。

如想暴露使用类或者函数方法,则需要在方法 func 前加public,否则外部调用会找不到方法名。

3如果你的代码需要依赖其他类库,如SDWebImage 解决方案如下:

打开ZHPodTest.podspec文件,末尾例子 s.dependency 'AFNetworking', '~>
2.3',按照这个格式添加你想要的库就可以了(亲测并不影响主工程引入相同类库)

6.将修改后的代码提交到远端gitlab或github

MacBook-Pro:ZHPodTest zhanglei$ git remote add origin https://github.com/ZHPodTest.git
MacBook-Pro:ZHPodTest zhanglei$ git add .
MacBook-Pro:ZHPodTest zhanglei$ git commit -m "代码提交"
MacBook-Pro:ZHPodTest zhanglei$ git push origin master

7.使用,podfile如下书写:

platform :ios, '8.0'
target 'Demo' do
//还可以写 :branch=>develop当前分支  打tag的化可以’~>0.1.0‘
pod 'ZHPodTest',:git=>'https://github.com/ZHPodTest.git'
end

第二部分功能实现(首先第一部分做好)

1.gitlab或者github上创建一个空项目ZHPodTestRepo
2.cd到cocoapod/repos 添加本地资源:

MacBook-Pro:Desktop zhanglei$ cd ~/.cocoapods/repos/
MacBook-Pro:repos zhanglei$ pod repo add ZHPodTestRepo https://github.com/ZHPodTestRepo.git
MacBook-Pro:repos zhanglei$ ls
ZHPodTestRepo      master

3.编辑spec文件(这部分注意一定不要填错。。。)

Pod::Spec.new do |s|
  s.name             = 'ZHPodTest'  //名字要与源代码名字一致
  s.version          = '0.1.0'//版本要与tag相同
  s.summary          = 'A short description of ZHPodTest.'

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

  s.description      = <<-DESC
TODO: Add long description of the pod here.
                       DESC

  s.homepage         = 'https://github.com/zhanglei/ZHPodTest'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'zhanglei' => '[email protected]' }
  s.source           = { :git => 'https://github.com/zhanglei/ZHPodTest.git', :tag => s.version.to_s }//地址要写对
  # s.social_media_url = 'https://twitter.com/'

  s.ios.deployment_target = '8.0'

  //代码资源目录 **表示任意层任意名字文件 *表示任意文件
  s.source_files = 'ZHPodTest/Classes/**/*'
  
  //需要图片等资源时需要添加
 //bundle包的时候 要写['ZHPodTest/Assets/Bundle.bundle'] 当前你的bundle文件名字
  # s.resource_bundles = {
  #   'ZHPodTest' => ['ZHPodTest/Assets/*.png']
  # }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  //下面是你需要依赖的其他资源库
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end

4.检测spec文件是否填写正确(如果错误就修改):

MacBook-Pro:ZHPodTest zhanglei$ pod lib lint --allow-warnings  //本地spec文件检测
MacBook-Pro:ZHPodTest zhanglei$ pod spec lint --allow-warnings//远端spec文件检测,spec文件提交到远端后最好也用这个命令检测一下

5.提交spec文件还有你此时可能修改的代码

MacBook-Pro:ZHPodTest zhanglei$ git add .
MacBook-Pro:ZHPodTest zhanglei$ git commit -m "修改spec文件"
MacBook-Pro:ZHPodTest zhanglei$ git push origin master

6.为仓库打tag(必须打tag,第一部分可以不打)而且tag必须和spec文件中的版本一致:

MacBook-Pro:ZHPodTest zhanglei$ git tag -m "version_0.1.0" 0.1.0
MacBook-Pro:ZHPodTest zhanglei$ git push --tags

7.将spec文件push到私有库进行管理:

MacBook-Pro:ZHPodTest zhanglei$ pod repo push ZHPodTestRepo ZHPodTest.podspec --allow-warnings

8.使用,podfile如下书写:

source 'https://github.com/CocoaPods/Specs.git' 
source 'https://github.com/TPQuietBro/ZHPodTestRepo.git'

platform :ios, '8.0'
target 'Demo' do
pod 'ZHPodTest'
end

9.更新,写好代码(调试别忘pod update),提交代码,然后依次执行4,5,6,7部分

pod 'ZHPodTest' ,"~> 0.1.1"

第三部分功能实现(第二部分前6部分都要做好)

1.注册trunk账号,收到验证邮件

pod trunk register 你的邮箱 '你的名字'  --verbose

2.查看自己的注册信息

pod trunk me

3.将spec文件推到trunk

pod trunk push xxx.podspec --allow-warnings

4.使用,其他人使用前pod update 更新master资源

platform :ios, '8.0'
target 'Demo' do
pod 'ZHPodTest'
end

你可能感兴趣的:(Pod组件化)