来源:https://www.jianshu.com/p/1446a3c2f786 查看这里更清楚
iOS组件化(一)----- 创建私有组件库(在码云上操作)
一、远程私有索引库创建(Spec)
A、创建远程私有索引库MyTestSpec(和创建远程工程一样),复制仓库地址(点击克隆/下载)
B、打开终端,将远程私有库关联到本地
cd /Users/User/.cocoapods/repos
pod repo add MyTestSpec https://gitee.com/CuteHf/MyTestSpec.git
https://gitee.com/CuteHf/MyTestSpec.git为上面点击克隆/下载复制的链接
这个时候/Users/User/.cocoapods/repos目录下面多了个MyTestSpec目录
二、私有代码仓库
A、创建文件夹MyTest
B、本地私有代码库
# cd到指定的目录,这个MyTest是自己创建的一个文件目录
cd /Users/user/MyTest
# 这里的HFMyTest代表想要封装的组件名称, 这个根据自己的需求而定
pod lib create HFMyTest
可能之后出现登录码云的需求,按照要求登录码云账号即可:
Cloning `https://github.com/CocoaPods/pod-template.git`>into`HFMyTestNew`.ConfiguringHFMyTestNewtemplate.!Beforeyou can create anewlibrary we need to setup>your git credentials.security:SecKeychainSearchCopyNext:Thespecified item>could not be foundinthe keychain.
Whatis your name?
>
Whatis your email?
>
在输入之后会有一些对组件工程的设置,具体如下:
What platformdoyou want to use??[iOS/macOS]
>iOS
//开发语言设置,根据自己而定,这里为ObjCWhat languagedoyou want to use??
[Swift/ObjC]
>ObjC
//是否需要创建一个demo用来测试你的组件,这里选择Yes,是为了之后对写好的组件进行测试Would you like to include a demo applicationwithyour library?[Yes/No]
>Yes
//测试框架
Which testing frameworks will you use?[Specta/Kiwi/None]
>None
//是否要做基础的视图测试
Would you like todoview based testing?[Yes/No]
>No
//文件前缀
What is yourclassprefix?
>FF
2. 创建完成过后,我们的工程会自动打开,创建完成后
可以发现在Pods文件下面现在有一个HFMyTest的文件夹,就是我们上面pod lib create HFMyTest时候创建的文件夹名
3. 添加功能的代码copy到Classes 目录中新建的MyView目录下
前往码云https://gitee.com创建项目HFMyTest
5. 创建成功后配置HFMyTest项目的.podspec文件,文件位置
6. 在配置.podspec文件时,需要修改的地方有如下几处:
7. 经过前6步,接下来将这个组件提交到码云上
C、远程私有代码仓库
1. 把本地的代码提交到远程仓库(注意要cd到工程目录下)
cd /Users/hf/MyTest/HFMyTest
git remote add origin https://gitee.com/CuteHf/HFMyTest.git #添加远程仓库
git push -u origin master #第一次可能会报错可尝试用 git push -u origin master -f 可能会覆盖远程的修改
git add . #记得后面一定要有.
git commit -m "创建我的组件"
git push -u origin master
git tag '0.1.0' #注意:这里的tag号必须和.podSpec文件的版本号一致
git push --tags
上面git remote add origin https://gitee.com/CuteHf/HFMyTest.git可能出现问题:
fatal:not a git repository(or any of the parent directories): > .git
表示在当前指向的文件夹里找不到库(.git文件夹)
解决办法是对目录进行初始化
git init
git push -u origin master可能会出现
error:src refspec master does not match any.
error:failed to push some refs to>'https://gitee.com/CuteHf/HFMyTestNew.git'
出现错误的主要原因是码云中的README.md文件不在本地代码目录中,可以通过如下命令进行代码合并[注:pull=fetch+merge]
git pull --rebase origin master
经过上面一步会发现本地的代码已经提交到码云的HFMyTest上面去了
D、对文件进行本地验证和远程验证(在工程目录下)
1. 从本地验证你的pod能否通过验证
pod lib lint --use-libraries --allow-warnings
--verbose:有些非语法错误是不会给出错误原因的,这个时候可以使用--verbose来查看详细的验证过程来帮助定位错误。
--use-libraries:表示使用静态库或者是framework,这里主要是解决当我们依赖一些framework库后校验提示找不到库的时候用到。
--allow-warnings:表示允许警告。
2. 从本地和远程验证的pod能否通过验证
pod spec lint --use-libraries --allow-warnings
3. 将spec 文件提交到本地的私有仓库,然后再push到远程仓库
//pod repo push 你的空间Spec 工程的.podspec --use-libraries --allow-warnings
pod repo push 你的空间_specs 工程的.podspec --use-libraries --allow-warnings
E、此时打开/Users/hf/.cocoapods/repos/MyTestSpec,发现下面多出HFMyTest文件
F、查看远程私有索引库
G、使用终端查看自己的私有组件
pod search HFMyTest
三、在新的项目中引用这个组件
新建一个项目MyTest,添加Podfile文件,格式如下
网友评论