iOS学习开发iOS开发技术分享iOS 常规

开源框架到CocoaPods

2019-04-03  本文已影响30人  弹吉他的少年

KJEmitterView

a simple project for KJEmitterDemo

相关Demo下载地址

[Demo下载地址](https://github.com/yangKJ/KJEmitterView

简书地址

[简书地址](https://www.jianshu.com/p/3ef51991c0e9

一、先将代码传到github上

1.创建本地仓库 git init
2.添加名称为origin的远程连接 git remote add origin 'Github项目地址'
3.将本地代码加入到本地仓库 git add .
4.提交修改到本地仓库 git commit -m '修改记录'
5.推送master分支的代码到名称为orgigin的远程仓库 git push origin master

二、给你git打上tag

打tag的目的就相当于给你的开源框架制定版本号,每个版本一个tag

1.cd仓库目录
2.查看本地tag git tag
3.添加本地tag 1.0.0 git tag -a 1.0.0 -m 'release 1.0.0'
图片 1.png
4.将tag传到远程 git push origin --tags

tag的其他操作

1.删除本地tag git tag -d 1.0.0
2.删除远程tag git push origin -d tag 1.0.0

三、注册Trunk

1.注册Trunk pod trunk register 邮箱 '用户名' --description='描述'
图片 2.png

成功的话就会受到一份邮件,点击邮件中的链接后验证一下:

2.打开邮箱点击地址:https://trunk.cocoapods.org/sessions/verify/965b5e96

点击红色terminal跳转回到终端


图片 3.png
3.注册 pod trunk me

成功会看到如下类似字段:


图片 4.png
4.如果你的pod是由多人维护的,你也可以添加其他维护者

pod trunk add-owner 名称 邮箱

四、获取MIT文件

1.网页链接 https://choosealicense.com/
图片 5.png

复制,修改相应的数据


图片 6.png
2.将生成的LICENSE文件同步至Github

五、创建自己项目的Podspec描述文件

1.创建podspec文件 pod spec create KJEmitterView
2.podspec文件代码
Pod::Spec.new do |s|
  s.name         = "KJEmitterView"
  s.version      = "1.0.0"
  s.summary      = "Some iOS Emitter"
  s.homepage     = "https://github.com/yangKJ/KJEmitterView"
  s.license      = "MIT"
  s.license      = { :type => "MIT", :file => "LICENSE" }
  s.license      = "Copyright (c) 2018 yangkejun"
  s.author       = { "77" => "393103982@qq.com" }
  s.platform     = :ios
  s.source       = { :git => "https://github.com/yangKJ/KJEmitterView.git", :tag => "#{s.version}" }
  s.framework    = "UIKit"
  # s.dependency "JSONKit", "~> 1.4"
  s.requires_arc = true

  s.subspec 'Classes' do |ss|
    ss.source_files = "KJEmitterView/Classes/**/*.{h,m}" # 添加文件
    ss.public_header_files = 'KJEmitterView/Classes/*.h',"KJEmitterView/Classes/**/*.h"   # 添加头文件
    ss.resources    = "KJEmitterView/Classes/**/*.{bundle}" # 添加数据资料
  end
  
end
3.验证你本地的podspec文件 pod spec lint KJEmitterView.podspec
4.忽略警告 pod spec lint KJEmitterView.podspec --allow-warnings

验证成功,


图片 7.png

六、传到CocoaPods上

1.首先验证你本地的podspec文件,之后会上传spec文件到trunk
2.将podspec文件传到trunk上 pod trunk push KJEmitterView.podspec

成功如下:


图片 8.png
3.一直处于Updating spec repo master 状态

可以选择更新下 pod repo update --verbose

4.检查是否上传成功: pod search KJEmitterView

七、Bug总结

1、[!] There was an error registering with trunk: getaddrinfo: nodename nor servname provided, or not known
2、- WARN | [iOS] license: Unable to find a license file
3、- WARN | source: The version should be included in the Git tag.
4、[!] Unable to accept duplicate entry for: KJEmitterDemo (1.0.0)
5、[!] Unable to find a pod with name, author, summary, or description matching KJEmitterDemo
6、校验不通过
Pasted Graphic 2.png
7、[!] There was an error pushing a new version to trunk: execution expired
8、- ERROR | [iOS] public_header_files: The pattern includes header files that are not listed in source_files
9、搜索不到最新版本pod库
10、代码中有__weak typeof(self) weakSelf = self;
11、代码中有dispatch_source_t库相关
12、- ERROR | [KJEmitterView/Classes] xcodebuild: KJEmitterView/KJEmitterView/Classes/AlertView/KJAlertView.m:163:116: error: property 'height' not found on object of type 'UILabel *'
2.png
13、- NOTE | [iOS] [KJEmitterView/Classes] xcodebuild: KJEmitterView/KJEmitterView/Classes/AlertView/KJAlertView.m:10:9: fatal error: 'UIView+KJFrame.h' file not found
3.png
14、ERROR | name: The name of the spec should match the name of the file.
15、ERROR | [iOS] unknown: Encountered an unknown error (Could not find a ios simulator (valid values: com.apple.coresimulator.simruntime.ios-12-2, com.apple.coresimulator.simruntime.tvos-12-2, com.apple.coresimulator.simruntime.watchos-5-2). Ensure that Xcode -> Window -> Devices has at least one ios simulator listed or otherwise add one.) during validation.
上一篇 下一篇

猜你喜欢

热点阅读