如何创建自己的公共框架

1、创建资源文件夹Classes
2、创建远程仓库
3、本地创建git init
4、关联远程仓库;
git remote add origin httpsxxxx
5、提交本地代码远程仓库: 先提交本地;
git add .
git commit -m "xxxx"
git push origin master :提交到远程的master 分支
6、创建sepc 描述文件
pod spec create xxx名称
7、podspec 文件如何填写;参考官网
8、打tag:git tag "tag号";必须和spec文件一直;推送到远程:git push --tags
9、注册tunk: pod trunk register [email protected] "woshiyituoniufen" --verbose
10、提交spec文件:pod trunk push xx.spec ;pod trunk push publicTest.podspec --allow-warnings
11、搜索:pod search

问题
1、搜索时:CDN: trunk URL couldn't be downloaded: https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/c/2/5/BCPublicTest/0.1.1/BCPublicTest.podspec.json, error: Failed to open TCP connection to raw.githubusercontent.com:443 (Connection refused - connect(2) for "raw.githubusercontent.com" port 443)
移除:pod repo remove trunk

你可能感兴趣的:(如何创建自己的公共框架)