0

嘿,圣诞快乐,

我想使用最新的 CocoaPods 版本将 DDMathParser 添加到我的 Swift 3 项目中。问题是我只安装了 DDMathParser 2.0.0。我想念什么?

我的 podfile 是:

platform :osx, '10.11'
target 'DDTest02' do
use_frameworks!
pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git'

当我尝试使用:

pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git', :branch => 'swift-3.0'

它抛出一个错误warning: Could not find remote branch swift-3.0 to clone. fatal: Remote branch swift-3.0 not found in upstream origin

4

1 回答 1

1

DDMathParser 作者在这里...

没有swift-3.0分支,所以我不确定你为什么要这样做。尝试3.0.0使用以下方式指定标签:

pod 'DDMathParser', :git => 'https://github.com/davedelong/DDMathParser.git', :tag ⇒ '3.0.0'
于 2016-12-24T20:55:49.893 回答