cocoapods不要下载core plot 2.3版本
cocapods do not download the version 2.3 of core plot
我尝试用 cocoapods 安装 Core Plot,但它总是下载 2.2 版而不是 2.3 版。我在 Podfile 中输入的以下行
pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.3'
但 cocopoads 仍然下载并安装 2.2 版本。有语法错误吗?
提前致谢!
你是如何确定版本的?该分支上的变更日志尚未更新,仍然显示 "Release 2.2"。一种简单的检查方法是查看 CPTXYAxis
。如果 xConstraints
和 yConstraints
属性是 public,您有来自 release-2.3
分支的代码。
我尝试用 cocoapods 安装 Core Plot,但它总是下载 2.2 版而不是 2.3 版。我在 Podfile 中输入的以下行
pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.3'
但 cocopoads 仍然下载并安装 2.2 版本。有语法错误吗?
提前致谢!
你是如何确定版本的?该分支上的变更日志尚未更新,仍然显示 "Release 2.2"。一种简单的检查方法是查看 CPTXYAxis
。如果 xConstraints
和 yConstraints
属性是 public,您有来自 release-2.3
分支的代码。