菜鸟教程小白 发表于 2022-12-13 10:26:07

ios - 无法通过 cocoapod 安装 CorePlot 2.0


                                            <p><p>我一直在我的 Xcode 项目中使用使用 cocoapod 的 CorePlot 1.5.1 没有问题。现在我需要升级到 CorePlot 2.0,因为我需要对同一事件进行上/下调整。我尝试通过以下方式编辑 PodFile 来做到这一点:</p>

<pre><code>pod &#39;CorePlot&#39;, &#39;~&gt; 2.0&#39;
</code></pre>

<p>和</p>

<pre><code>target &#39;ERPTests&#39; do
pod &#39;CorePlot&#39;
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 &#39;CorePlot&#39;, :git =&gt; &#39;https://github.com/core-plot/core-plot.git&#39;, :branch =&gt; &#39;release-2.0&#39;
</code></pre>

<p>有一个适用于 Mac 和 iOS 应用程序的组合头文件。您还可以将 <code>CorePlot-CocoaTouch.h</code>header 用于 iOS 项目。</p>

<pre><code>#import &#34;CorePlot.h&#34;
</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]
查看完整版本: ios - 无法通过 cocoapod 安装 CorePlot 2.0