如何更新版本Pod包?

问题描述 投票:0回答:1

这就是我现在 Pod 文件中的内容

platform :ios, '9.0'
use_frameworks!
target 'ListHue' do 
  pod 'RealmSwift'
  pod 'SwipeCellKit'
  pod 'ChameleonFramework/Swift', :git => 'https://github.com/ViccAlexander/Chameleon.git'
end

我想更新这个

platform :ios, '9.0'
use_frameworks!
target 'ListHue' do 
  pod 'RealmSwift'
  pod 'SwipeCellKit','2.5.0'
  pod 'ChameleonFramework/Swift', :git => 'https://github.com/ViccAlexander/Chameleon.git'
end

当我需要更新我的 Pod 包时,我需要运行什么命令?

pod update
pod install
或两者兼而有之?

ios xcode cocoapods
1个回答
9
投票

仅当您想要将 pod 更新到较新版本时,才使用

pod install
在您的项目中安装新的 pod,并且使用
pod update [PODNAME]
(如果您想将所有 pod 更新到最新版本,则无需名称)。

更多信息请参见this cocoapods 指南。

© www.soinside.com 2019 - 2024. All rights reserved.