0
嘿那裏,聖誕快樂,DDMathParser 3.0.0用的CocoaPods
我想使用最新的CocoaPods版本DDMathParser添加到我的斯威夫特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
使用':tag ...'成功解決了問題。非常感謝您的快速回答。我剛剛看到你的包更新到Swift 3.0,並錯誤地認爲有一個'swift-3.0'分支可用。 – JFS