如何安装特定版本的cocoapods repo

时间:2016-07-26 21:46:49

标签: ios cocoapods

这是我的Podfile

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'RMQClient', '~> 0.8'

当我尝试使用pod install从cocoapods安装repo时,它会安装pod 'RMQClient'的新版本(例如0.9)。

在具有相同xcode project的其他Podfile中,我创建了一个pod update,并且cocoapods更新了pod repo:

  

安装RMQClient 0.9.0(为0.8)

如何在更新时阻止cocoapods更新pod repos? 如何强制安装我在Podfile中设置的版本?

1 个答案:

答案 0 :(得分:4)

您的错误位于~>

尝试

  

pod 'RMQClient', '0.8'

<强>更新

检查回购标签。

正确的回购标签应该是:

enter image description here

我可以看到RMQClient有:

enter image description here

考虑v字符。 我不确定,但可能不方便