iOS组件化实现步骤总结

2018-07-25  本文已影响0人  wsj_2012

========

1、创建私有Repo(Specs)

// 添加私有Repo
pod repo add ch_team https://git.oschina.net/ch_team/Specs.git
// 验证是否成功
pod repo lint .

2、创建主工程

git clone https://git.oschina.net/ch_team/PAToapAPP.git
pod init
pod install

现在主工程已创建完毕。

3、创建组件Pod(创建多个Pod,创建方式相同)

git clone https://git.oschina.net/ch_team/PAToapAPP-User.git
pod spec create PAToapAPP-User

文件目录变为:
Example(📂)
LICENSE
Pod(📃)
……Classes(📂)
…………Model(📂)
…………View(📂)
…………ViewModel(📂)
README.md
PAToapAPP-User.podspec

s.homepage      =  "http://git.oschina.net/ch_team/PAToapAPP-User"
s.license       =  { :type => "MIT", :file => "LICENSE" }
s.source_files  =  "Pod/Classes", "Pod/Classes/**/*.{h,m}"
$ pod lib lint
$ git add .
$ git commit -m "添加Pod"
$ git push
#添加Tag
$ git tag 0.0.1 #这里需要与你的.podspec中s.version值相同
$ git push --tags
#验证
$ pod spec lint
-> PAToapAPP-User(0.0.1)
Analyzed 1 podspec
PAToapAPP-User.podspec passed validation.
$ pod repo push ch_team PAToapAPP-User.podspec
Validatiing spec
->PAToapAPP-User(0.0.1)
Updating the `ch_team` repo
Already up-to-date.
Adding the spec to the `ch_team` repo
-[No change] PAToapAPP-User(0.0.1)
Pushing the `ch_team` repo
$ pod search PAToapAPP-User
->PAToapAPP-User(0.0.1)
业务组件A
pod 'PAToapAPP-User', '~> 0.0.1'
source 'https://github.com/CocoaPods/Specs' 
source 'https://github.com/ch_team/Specs.git' 
platform :ios, "9.0" 
target "XXX" do 
    pod 'PAToapAPP-User', '~>0.0.1' 
end

当组件化项目完成以后,后续开发中主要的操作步骤如下:

上一篇 下一篇

猜你喜欢

热点阅读