iOS 基于 Cocoapods 的組件化

手動(dòng)組件化基本步驟

一、遠(yuǎn)程索引庫

  1. 什么是遠(yuǎn)程索引庫

每創(chuàng)建一個(gè)組件都會(huì)帶有一個(gè) xxx.podspec 的索引文件品擎。專門用來存放這些索引文件的庫就叫做索引庫。我們需要將這些索引文件上傳到遠(yuǎn)程索引庫才能保證其他的同事能夠拿來用备徐。

  1. 創(chuàng)建遠(yuǎn)程索引庫

    在 git 代碼倉庫中創(chuàng)建一個(gè)所以庫:

    image
  2. 在 git 中本地添加索引庫地址

    利用 pod repo 來查看當(dāng)前的索引庫萄传,然后 pod repo add SampleSpecs https://XXXX/XXX/SampleSpecs.git 命令添加新創(chuàng)建的索引庫地址

    image

    如果使用自己搭建的 Git 服務(wù)器,因?yàn)樽C書是自簽的蜜猾,Git 驗(yàn)證后會(huì)拒絕秀菱,可能會(huì)遇到如下問題:

    fatal: unable to access 'https://XXXXX/XX/SampleSpecs.git/': SSL certificate problem: self signed certificate

    這里可以用如下命令臨時(shí)禁用驗(yàn)證方法來解決:

    git -c http.sslVerify=false clone https://XXXXX/XX/SampleSpecs.git

    或者直接徹底禁用:

    git config --global http.sslVerify false

二、創(chuàng)建私有 Framework

  1. 在 git 代碼倉庫中創(chuàng)建一個(gè)代碼倉庫
    image
  2. 通過 Xcode 創(chuàng)建一個(gè)框架工程蹭睡,將需要編譯的代碼添加到工程中衍菱,保證編譯通過,將需要暴露的頭文件在 Xcode 中設(shè)為 public

  3. 編譯融合編譯器和真機(jī)的 Framework:

    示例合并打包腳本:

    <pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="shell" cid="n31" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-size: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 8px 1em 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; background-position: inherit inherit; background-repeat: inherit inherit;">FMK_NAME={PROJECT_NAME} INSTALL_DIR={SRCROOT}/Products/{FMK_NAME}.framework WRK_DIR=build DEVICE_DIR={WRK_DIR}/Release-iphoneos/{FMK_NAME}.framework SIMULATOR_DIR={WRK_DIR}/Release-iphonesimulator/{FMK_NAME}.framework xcodebuild -configuration "Release" -target "{FMK_NAME}" -sdk iphoneos clean build
    xcodebuild -configuration "Release" -target "{FMK_NAME}" -sdk iphonesimulator clean build if [ -d "{INSTALL_DIR}" ]
    then
    rm -rf "{INSTALL_DIR}" fi mkdir -p "{INSTALL_DIR}"
    cp -R"{DEVICE_DIR}/" "{INSTALL_DIR}/"
    lipo -create "{DEVICE_DIR}/{FMK_NAME}" "{SIMULATOR_DIR}/{FMK_NAME}" -output "{INSTALL_DIR}/{FMK_NAME}"
    rm -r "{WRK_DIR}" open "{INSTALL_DIR}"</pre>

    在使用腳本進(jìn)行合并打包的時(shí)候肩豁,如果 Xcode 10 需要在 File->Project Settings 中對(duì)Build System 設(shè)置為 Legacy Build System

    image
  4. 創(chuàng)建 PodSpec 文件脊串,這個(gè)文件是這個(gè) Framework 在索引庫的 “身份證”,其中主要的內(nèi)容如下:

framework podSpec 文件樣例

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="" contenteditable="false" cid="n37" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-size: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 8px 1em 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; caret-color: rgb(51, 51, 51); color: rgb(51, 51, 51); font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none; background-position: inherit inherit; background-repeat: inherit inherit;">Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '8.0'
s.name = 'PrivateFrameworkTest'
s.version = '1.0.0'
s.summary = 'A short description of PrivateFrameworkTest.'
s.requires_arc = true
s.homepage = 'https://XXXX/XXX/PrivateFrameworkTest.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Chinastock' => XXX' }
s.source = { :git => 'https://XXXX/XXX/PrivateFrameworkTest.git', :tag => '1.0.0' }
?
s.ios.deployment_target = '8.0'
?

Framework 的頭文件地址

s.source_files = 'XXX/PrivateFrameworkTest.framework/Headers/*.{h}'

Framework 文件地址

s.vendored_frameworks = 'XXX/PrivateFrameworkTest.framework'

項(xiàng)目頭文件地址

s.public_header_files = 'XXX/PrivateFrameworkTest.framework/Headers/PrivateFrameworkTest.h'
end</pre>

podSpec 文件樣例

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="shell" contenteditable="false" cid="n40" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-size: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 8px 1em 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; caret-color: rgb(51, 51, 51); color: rgb(51, 51, 51); font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none; background-position: inherit inherit; background-repeat: inherit inherit;">Pod::Spec.new do |s|
// 工程名
s.name = "PrivatePodTest"
// 版本(需要和 Git 的 tag 保持一致)
s.version = "0.0.1"
// 工程的概述
s.summary = "Private Pod Test."
// 主頁
s.homepage = "https://xx/PrivatePodTest.git"
// 填寫 Git 組件地址
?

s.license = { :type => "MIT", :file => "LICENSE" }

?
// 作者
s.author = { "xxxx" => "xxxx@xxx.com" }
// 支持的平臺(tái) 和 系統(tǒng)版本
s.platform = :ios, "8.0"
// 倉庫的地址 和 tag(和version相同)
s.source = { :git => "git@git.coding.net:xxxx/SampleFramework.git", :tag => "#{s.version}" }
// 工程的源文件
s.source_files = "Source/.{h,m}", 'FrameworkPath/.{framework}'
// iOS ARC要求
s.requires_arc = true
// 該工程依賴了哪些cocoapods庫(未使用清钥,此項(xiàng)注釋)
?
// 依賴的第三方框架
s.dependency "AFNetworking", "~> 0.1"
end</pre>

其中洪规,s.source 要填創(chuàng)建索引庫的代碼倉庫中的地址:

[圖片上傳失敗...(image-77b457-1551403437812)]

  1. 本地對(duì) podSpec 文件進(jìn)行校驗(yàn)

    在終端中,輸入:

    pod spec lint XXX.podspec --verbose --allow-warnings

    來直接進(jìn)行線上 podSpec 文件進(jìn)行校驗(yàn)循捺,如果有錯(cuò)誤主要會(huì)出現(xiàn)在 podSpec 文件中斩例。

    [圖片上傳失敗...(image-5e99e2-1551403437810)]

    這里常見錯(cuò)誤

    file patterns: The XXX pattern did not match any file

    需要檢查一下 podSpec 文件中引用 Git 倉庫中對(duì)應(yīng)的版本中相應(yīng)的路徑是否有正確的文件。

  2. 將校驗(yàn)通過的Framework 推送到代碼索引庫

    pod repo push XXXSpecs XXX.podspec --allow-warnings

三从橘、如何使用 Framework

  1. 在基于 Cocoapods 的工程中使用念赶,在 Podfile 頭部中索引庫的引用添加:

    source 'https://XXXX/XXX/SampleSpecs.git'

    然后用正常的語法進(jìn)行引用:

    pod 'SampleFramewokr'~>'0.1'

    就可以使用 Framework 了础钠。

  2. 在其他 Framework 中使用,在 podSpecs 文件中添加索引庫的引用叉谜,并且在s.dependency 中添加引用庫的名字旗吁;在其他 Framework 中使用,需要保證編譯通過停局。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末很钓,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子董栽,更是在濱河造成了極大的恐慌码倦,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件锭碳,死亡現(xiàn)場離奇詭異袁稽,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)擒抛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門推汽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人歧沪,你說我怎么就攤上這事歹撒。” “怎么了诊胞?”我有些...
    開封第一講書人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵栈妆,是天一觀的道長。 經(jīng)常有香客問我厢钧,道長鳞尔,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任早直,我火速辦了婚禮寥假,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘霞扬。我一直安慰自己糕韧,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開白布喻圃。 她就那樣靜靜地躺著萤彩,像睡著了一般。 火紅的嫁衣襯著肌膚如雪斧拍。 梳的紋絲不亂的頭發(fā)上雀扶,一...
    開封第一講書人閱讀 51,125評(píng)論 1 297
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼愚墓。 笑死予权,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的浪册。 我是一名探鬼主播扫腺,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼村象!你這毒婦竟也來了笆环?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬榮一對(duì)情侶失蹤厚者,失蹤者是張志新(化名)和其女友劉穎躁劣,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體籍救,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年渠抹,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了蝙昙。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡梧却,死狀恐怖奇颠,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情放航,我是刑警寧澤烈拒,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站广鳍,受9級(jí)特大地震影響荆几,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜赊时,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一吨铸、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧祖秒,春花似錦诞吱、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至抬纸,卻和暖如春咙俩,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背湿故。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來泰國打工暴浦, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留溅话,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓歌焦,卻偏偏與公主長得像飞几,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子独撇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353