1:准备工作: via:如何创建私有podspec
; 创建 私有源 库
http://123.103.86.53:8090/zhuantiku/ZTKIOSArenaCentre-Spec.git
: 创建 代码库
http://123.103.86.53:8090/zhuantiku/ZTKIOSArenaCentre-Repo.git
2:本地添加私有源
pod repo add ZTKIOSArenaCentre-Spec http://123.103.86.53:8090/zhuantiku/ZTKIOSArenaCentre-Spec.git
存放 Spec 版型信息
3: 创建pod
pod lib create ZTKIOSArenaCentre-Repo
注意:先验证
4: 配置 代码仓库 和 podspec 将代码同步到此Git上
git add .
git commit -m "Init"
git remote add origin http://123.103.86.53:8090/zhuantiku/ZTKIOSArenaCentre-Repo.git
git push --set-upstream origin master
编辑podspec 和 pod/class 完成后执行
1:pod lib lint --allow-warnings
验证 pod 和 podspec代码是否编译通过
2: 私有库引用私有库
pod spec lint --sources='http://123.103.86.53:8090/zhuantiku/ZTKIOSDevFramework-Spec.git,https://github.com/CocoaPods/Specs' --allow-warnings --use-libraries --verbose
pod repo push 本地repo名 podspec名 --sources='私有仓库repo地址,https://github.com/CocoaPods/Specs'
5: 将改动代码 提交 repo 库
git add .
git commit -m '编辑.podspec and Example and Pod Class'
//添加tag 一定要和podspec中的version一致
git tag 0.0.1
git push origin master --tags
6: 把Spec 添加到准备工作中的私有源仓库(ZTKIOSArenaCentre-Spec)
pod repo push
ZTKIOSDevFramework-Repo ZTKIOSDevFramework-Repo.podspec --allow-warnings --use-libraries --verbose
pod repo push
ZTKIOSArenaCentre-Spec ZTKIOSArenaCentre-Repo.podspec --sources='http://123.103.86.53:8090/zhuantiku/ZTKIOSDevFramework-Spec.git,https://github.com/CocoaPods/Specs' --allow-warnings --use-libraries
--verbose
pod repo push 本地repo名 podspec名 --sources='私有仓库repo地址,https://github.com/CocoaPods/Specs'
7: 查 pod
pod search ZTKIOSDevFramework-Repo
8:进入需要使用 ZTKRepoSpec 的项目中配置 Podfile
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git' #官方仓库地址
source ‘http://123.103.86.53:8090/zhuantiku/ZTKIOSDevFramework-Spec.git’ #私有仓库地址(spec)
target 'ZTKIOSDevFramework-Repo_Example' do
pod 'MJExtension'
pod 'CocoaAsyncSocket'
pod 'pop', '~> 1.0'
pod 'SDAutoLayout', '~> 2.1.3'
pod 'ZTKIOSDevFramework-Repo' , '0.2.0'
pod 'SDWebImage'
end
然后
pod update
pod install
1:pod 文件 无法#import
在build settings -->Search Paths-->User Header Search Paths
$(PODS_ROOT)
2: error: include of non-modular header inside framework module
将导入 第三方 不要放在.h 放在.m 文件内
VIA: 教你如何从0到1实现组件化架构
在现有工程中实施基于CTMediator的组件化方案
基于 CocoaPods 和 Git 的 iOS 工程组件化实践
wujunyang/jiaModuleDemo
待定:
3:根据 gitlab 配置 代码repository (repo spec 都要init)
iOS模块化实践 -- 利用CocoaPods拆分项目
cd 代码repository
git init
git add .
git commit -m "first commit"
git remote add origin http://123.103.86.53:8090/zhangxinxin/ZTKDevFramework.git
git push -u origin master
4: 配置 podspec文件 via:[CocoaPods 项目 “模块化” 实战] (这个全)(http://www.jianshu.com/p/247ec798cce1)
因cocoaPods强制添加开源许可文件,在ZTKDevFramework工程目录下创建FILE_LICENSE
echo MIT>FILE_LICENSE
创建podspec文件
pod spec create ZTKIOSDevFramework-Repo
Pod::Spec.new do |s|
s.name = 'ZTKIOSDevFramework-Repo '
s.version = '0.1.0'
s.summary = '管理公司项目中通用代码的 Pods 库'
s.homepage = 'http://www.demo.com/'
s.license = { :type => 'MIT', :file => 'LICENSE' } # 开源协议
s.author = { 'KentonYu' => 'demo@163.com' }
s.source = { :git => 'http://123.103.86.53:8090/zhangxinxin/ZTKDevFramework.git', :tag => s.version.to_s } # Pods 库的地址
s.ios.deployment_target = '7.0' # Pods 库支持的系统版本
s.prefix_header_contents = '#import "DTBaseKit.h"' # Pods 库中需要预编译的头文件
# subspec 是 Spec 中的子类
s.subspec 'BaseKit' do |sub|
sub.source_files = 'PodsRepo/BaseKit/*.{h,m}', 'PodsRepo/BaseKit/**/*.{h,m}'
sub.public_header_files = 'PodsRepo/BaseKit/*.h', 'PodsRepo/BaseKit/**/*.h'
end
s.subspec 'NetworkingKit' do |sub|
sub.source_files = 'PodsRepo/NetworkingKit/*.{h,m}'
sub.public_header_files = 'PodsRepo/NetworkingKit/*.h'
sub.dependency 'AFNetworking', '~> 3.1.0'
sub.dependency 'PodsRepo/BaseKit' # 可以依赖同一个 Pods 库中的 subspec
end
# s.resource_bundles = { # 依赖的资源路径
# 'PodsRepo' => ['PodsRepo/Assets/*.png']
# }
# s.frameworks = 'UIKit', 'MapKit' # 依赖的系统库
end
s.source_files = "Base", "BaseViewController/*/.{h,m}"
s.source_files 这个 如果pod 有多个文件夹怎么办?