一、准备工作
创建远程仓库 or 私有远程仓库
FFSpec
,(用来存放spec)创建远程仓库 or 私有远程仓库
FFPlayer
,(你想要托管的项目名称)
二、创建托管项目的工程
cd到合适目录
执行
pod lib create FFPlayer
按提示输入需要的内容
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 ]
> Yes
What is your class prefix?
> FF
完成后会自动创建项目,并且自动打开
-
然后找到创建项目的目录,找到FFPlayer文件夹,找到
Classes
文件夹,删除ReplaceMe.m
文件
-
将自己需要的文件放到
Classes
目录中,同时如果有图片可以放入Assets
文件中
-
cd到上图中的
Example
目录下,执行pod install
更新 pod 完成后如下显示
三、修改 .podspec
- 打开 Example 中的 . workspace 打开工程,并找到
.podspec
文件
- 修改 spec文件
3.修改完成后 cd 到 FFPlayer目录运行pod lib lint
出现passed validation.
表示成功
如出现警告信息 可以使用pod lib lint --allow-warnings
忽略警告
四、将本地项目上传到远程仓库
$ git remote add origin https://github.com/caochengfei/FFPlayer.git
$ git add .
$ git commit -m "commit"
$ git push -u origin master
//tag 值要和podspec中的version一致
$ git tag 0.1.0
//推送tag到服务器上
$ git push --tags
五、校验spec
- 执行
pod spec lint
出现
FFPlayer.podspec passed validation.
表示成功出现
fatal: Remote branch 0.1.0 not found in upstream origin
说明本地项目没有上传到远程仓库
六、创建spec repo
进入文件夹
cd ~/.cocoapods/repos
可以查看本地spec repo
指定管理
lib repo
的specs repo
的url
格式pod repo add 仓库名 仓库地址
如 :pod repo add FFPlayer https://github.com/caochengfei/FFPlayer.git
推送
podspec
到specs repo
pod repo push FFPlayer FFPlayer.podspec --sources=https://github.com/caochengfei/FFPlayer.git
完成
七、验证
在项目中的
Podfile
文件中添加自己的仓库名称 pod 'xxx',执行
pod install