iOS 组件化开发简单配置

iOS组件化 Cocoapods管理自己的库

添加本地索引库

$ pod repo add TextOne https://github.com/Jack424/TextOne.git
Cloning spec repo `TextOne` from `https://github.com/Jack424/TextOne.git`

查看是否添加成功

$ pod repo

master
- Type: git (master)
- URL:  https://github.com/CocoaPods/Specs.git
- Path: /Users/jintian/.cocoapods/repos/master

TextOne
- Type: git (main)
- URL:  https://github.com/Jack424/TextOne.git
- Path: /Users/jintian/.cocoapods/repos/TextOne

trunk
- Type: CDN
- URL:  https://cdn.cocoapods.org/
- Path: /Users/jintian/.cocoapods/repos/trunk

3 repos

通过CocoPods的官方命令创建Pod项目工程

$ cd /Users/jintian/Documents/1Test/PodLib 
$ pod lib create TextTwo
Cloning `https://github.com/CocoaPods/pod-template.git` into `TextTwo`.
Configuring TextTwo template.

------------------------------

To get you started we need to ask a few questions, this should only take a minute.

If this is your first time we recommend running through with the guide: 
 - https://guides.cocoapods.org/making/using-pod-lib-create.html
 ( hold cmd and double click links to open in a browser. )


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 ]
 > No

What is your class prefix?
 > GRJ

Running pod install on your new library.

Analyzing dependencies
Downloading dependencies
Installing TextTwo (0.1.0)
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `TextTwo.xcworkspace` for this project from now on.
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

[!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfile.

 Ace! you're ready to go!
 We will start you off by opening your project in Xcode
  open 'TextTwo/Example/TextTwo.xcworkspace'

To learn more about the template see `https://github.com/CocoaPods/pod-template.git`.
To learn more about creating a new pod, see `https://guides.cocoapods.org/making/making-a-cocoapod`.

执行完命令后会生成工程,如下

pod lib create TextTwo

把封装的代码放到Classes中 .framework .h .m .a

替换前

替换后

.podspec

#
# Be sure to run `pod lib lint TextTwo.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = 'TextTwo'
  s.version          = '0.1.0'
  s.summary          = "A iOS Fast integration of custom classifications, macro definitions and tool classes"

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

#  s.description      = <<-DESC
#TODO: Add long description of the pod here.
#                       DESC

  s.homepage         = 'https://github.com/Jack424/TextTwo.git'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'gu_ruijie@163.com' => 'ruijie.gu@jintiangufen.com' }
  s.source           = { :git => 'https://github.com/Jack424/TextTwo.git', :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '9.0'

  s.source_files = 'TextTwo/Classes/**/*'
  
  # s.resource_bundles = {
  #   'TextTwo' => ['TextTwo/Assets/*.png']
  # }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end

校验TextTwo.podspec 是否有效

这里需要添加--sources,指明校验的源为自己的spec索引库

$ pod lib lint TextTwo.podspec --sources=https://cdn.cocoapods.org/,https://github.com/Jack424/TextTwo.git

 -> TextTwo (0.1.0)
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | xcodebuild:  note: Building targets in parallel
    - NOTE  | xcodebuild:  note: Using codesigning identity override: -
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')

TextTwo passed validation.

关联远程仓库

把通过pod lib create 建立的模板工程的.git 文件替换为创建的自己使用的pod引用库.git文件,目的在于关联当前的项目到私有库。

提交工程,打tag

$ git add --all
$ git commit -m "操作内容"
$ git push
$ git tag "0.1.0"
$ git push --tags
image.png

把本地的私有库推送到远程

$ pod repo push TextOne TextTwo.podspec --sources=https://cdn.cocoapods.org/,https://github.com/Jack424/TextOne.git

Validating spec
 -> TextTwo (0.1.0)
    - NOTE  | xcodebuild:  note: Using new build system
    - NOTE  | xcodebuild:  note: Building targets in parallel
    - NOTE  | xcodebuild:  note: Using codesigning identity override: -
    - NOTE  | [iOS] xcodebuild:  note: Planning build
    - NOTE  | [iOS] xcodebuild:  note: Constructing build description
    - NOTE  | [iOS] xcodebuild:  warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')

Updating the `TextOne' repo


Adding the spec to the `TextOne' repo

 - [Add] TextTwo (0.1.0)

Pushing the `TextOne' repo
image.png

git中的结构
$ pod search TextTwo
Creating search index for spec repo 'TextOne'.. Done!

-> TextTwo (0.1.0)
   A iOS Fast integration of custom classifications, macro definitions and tool classes
   pod 'TextTwo', '~> 0.1.0'
   - Homepage: https://github.com/Jack424/TextTwo.git
   - Source:   https://github.com/Jack424/TextTwo.git
   - Versions: 0.1.0 [TextOne repo]

好!!!

按捺不住激动让!我们试试吧!!!

简单创建一个本地工程TextThree

使用pod init初始化pod

$ pod init

配置Podfile

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'TextThree' do
  # Comment the next line if you don't want to use dynamic frameworks
source 'https://cdn.cocoapods.org'
source 'https://github.com/Jack424/TextOne.git'

  use_frameworks!

  # Pods for TextThree

  target 'TextThreeTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'TextThreeUITests' do
    # Pods for testing
  end

pod 'TextTwo', '0.1.0'
end

pod导入库

$ pod install
Analyzing dependencies
Downloading dependencies
Installing TextTwo (0.1.0)
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `TextThree.xcworkspace` for this project from now on.
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

[!] Automatically assigning platform `iOS` with version `14.2` on target `TextThree` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.

[!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfile.

结果

image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 156,423评论 4 359
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,339评论 1 289
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 106,241评论 0 237
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,503评论 0 203
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 51,824评论 3 285
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,262评论 1 207
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,615评论 2 309
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,337评论 0 194
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 33,989评论 1 238
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,300评论 2 240
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,829评论 1 256
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,193评论 2 250
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,753评论 3 230
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 25,970评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,708评论 0 192
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,295评论 2 267
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,207评论 2 258

推荐阅读更多精彩内容