组件化优点:
就好比封装控件,复杂的控件一般都会封装,组件化只不过是把每个模块单独抽出来,作为一个小工程,然后在组成一个一个完整的项目。
一、创建私有库索引
二、本地添加私有库索引
-
查看本地索引库(里面可以看到自己以前创建的索引库)
-
电脑端查看路径如下
- 添加私有库索引
pod repo add MLLToolsSpec https://gitee.com/mll2017/MLLToolsSpec.git
-
如下图所示新增了MLLToolsSpec的文件(至此本地私有索引库创建完成)
三、创建基础组件库
四、以上三步完成后可以开始组件库的工程创建了
cd 到桌面存放组件工程的文件夹,然后输入命令
pod
1.cd 到创建的文件夹中
cd /Users/menglele/Desktop/组件化/LGLib
2.制作库
pod lib create MLLTools
3.选项,选择完成后项目自动打开
What platform do you want to use?? [ iOS / macOS ]
> iOS
What language do you want to use?? [ Swift / ObjC ]
> ObjC
Would you like to include a demo application with your library? [ Yes / No ]
> Yes
Which testing frameworks will you use? [ Specta / Kiwi / None ]
> None
Would you like to do view based testing? [ Yes / No ]
> No
What is your class prefix?
> MLL
项目本地组件库创建完成后会自动打开项目。下面我们可以向组件库中添加公共组件类。
- 添加公共组件类
将封装好的组件放到Classes文件夹下, 替换掉ReplaceMe.m文件
Assets文件夹:内部放资源文件,例如图片,xib,Storyboard等。
Classes文件夹:顾名思义,类文件夹,放的都是类文件,也就是我们说的公有组件。
本地创建的项目安装组件 将项目cd到Example文件夹下, 里面含有Podfile文件, 然后 pod install
这样可以在项目中导入头文件进行开发和测试, 测试没有问题后可以将组件关联到远程的仓库
四、关联组件代码
1.将组件代码关联到仓库
git add .
git commit -m "关联组件代码"
git remote add origin https://gitee.com/mll2017/MLLTools.git
git push -f origin master
2.打tag并上传到git
注:所打的tag要和.podspec中的s.version保持一致,否则,后面不能通过远程验证。
下面我们去远程私有库去看下这个tag是否创建成功
//上传成功后码云文件如下
五、验证
1.本地验证
pod lib lint --sources='[spec远端路径],https://github.com/CocoaPods/Specs.git' --allow-warnings
验证成功 MLLTools passed validation.
2.远程验证
pod spec lint --sources='[spec远端路径],https://github.com/CocoaPods/Specs.git' --allow-warnings
验证成功 失败了
文件如图所示
然后重新进行远程验证
通过 MLLTools.podspec passed validation.
六、提交.podspec文件
pod repo add CCComponentSpec [spec远端路径]
如果本地已经有的话会提示
[!] /usr/local/bin/git clone https://gitee.com/mll2017/MLLToolsSpec.git -- MLLToolsSpec
fatal: destination path 'MLLToolsSpec' already exists and is not an empty directory.
pod repo push MLLToolsSpec MLLTools.podspec --allow-warnings --sources="[spec远端路径],https://github.com/CocoaPods/Specs"
最后我们来到码云的私有索引库可以看到组件已经上传成功
七、更新组件
1.添加文件到classes文件夹下
2.修改podspec文件,将s.version = '0.1.0'改为s.version = '0.2.0'
3.向远程仓库更新代码
git add .
git commit -m "更新组件"
git push origin master
4.更新tag版本
git tag '0.2.0'
git push --tags
5.更新索引库
pod repo push MLLToolsSpec MLLTools.podspec --allow-warnings --sources="https://gitee.com/mll2017/MLLToolsSpec.git,https://github.com/CocoaPods/Specs"
八、使用组件
pod文件
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
#私有库source1
source 'https://gitee.com/mll2017/cccomponent-spec.git'
#私有库source2
source 'https://gitee.com/mll2017/MLLToolsSpec.git'
#公有库需要使用的source
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
target 'demotest' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# pod 'CCBasicComponents', '~>0.2.0' #指定要安装的版本
pod 'CCBasicComponents'
pod 'MLLTools'
pod 'SSZipArchive'
pod 'SDWebImage'
pod 'AFNetworking'
end