ios - 无法通过 cocoapod 安装 CorePlot 2.0
<p><p>我一直在我的 Xcode 项目中使用使用 cocoapod 的 CorePlot 1.5.1 没有问题。现在我需要升级到 CorePlot 2.0,因为我需要对同一事件进行上/下调整。我尝试通过以下方式编辑 PodFile 来做到这一点:</p>
<pre><code>pod 'CorePlot', '~> 2.0'
</code></pre>
<p>和</p>
<pre><code>target 'ERPTests' do
pod 'CorePlot'
end
</code></pre>
<p>我得到错误“<code>Podfile</code> 所需的<code>CorePlot (~> 2.0)</code>”的第一种方式。第二种方式我得到了 1.5.1 版本。我的 cocoapod 是 0.35.0。我用谷歌搜索并没有关于这个问题的相关帖子。有什么想法吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>Core Plot 还没有 2.0 版本。在您的 podfile 中使用以下行指向 <code>release-2.0</code> 分支:</p>
<pre><code>pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.0'
</code></pre>
<p>有一个适用于 Mac 和 iOS 应用程序的组合头文件。您还可以将 <code>CorePlot-CocoaTouch.h</code>header 用于 iOS 项目。</p>
<pre><code>#import "CorePlot.h"
</code></pre></p>
<p style="font-size: 20px;">关于ios - 无法通过 cocoapod 安装 CorePlot 2.0,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29009885/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29009885/
</a>
</p>
页:
[1]