无法通过cocoapod安装CorePlot 2.0

时间:2015-03-12 12:33:11

标签: ios cocoapods core-plot

我一直在我的Xcode项目中使用cocoapod而没有问题的CorePlot 1.5.1。现在我需要升级到CorePlot 2.0,因为我需要在同一事件上启动/关闭。我尝试通过以下任一方式编辑PodFile来实现这一点:

pod 'CorePlot', '~> 2.0'

target 'ERPTests' do
pod 'CorePlot'
end

首先我收到CorePlot (~> 2.0)所需的错误“Podfile”。第二种方式我得到1.5.1版本。我的可可豆荚是0.35.0。我用Google搜索并没有关于这个问题的相关帖子。有什么想法吗?

1 个答案:

答案 0 :(得分:4)

Core Plot尚未发布2.0版本。使用podfile中的以下行指向release-2.0分支:

pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.0'

有一个组合的头文件适用于Mac和iOS应用程序。您还可以使用CorePlot-CocoaTouch.h标题进行iOS项目。

#import "CorePlot.h"