ios - 无效的 `Podfile` 文件 : uninitialized constant
<p><p>向每个目标添加相同的 pod 是多余的。 </p>
<pre><code> def RedundantPod
pod "Pod"
end
target 'targetOne' do
RedundantPod
end
target 'targetTwo' do
RedundantPod
end
</code></pre>
<p>以下设置会引发错误类型:<code>[ ! ] 无效的 Podfile 文件:未初始化的常量</code>。这里有什么问题? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>对于 future 的读者,问题来自命名 <code>RedundantPod</code>,它不应该以大写字母 <code>R</code> 开头。</p>
<p>确实,以大写字母开头的名称在 Ruby 中是常量。仍然可以为方法使用常量名称,但您将无法在没有括号的情况下调用它,因为解释器会将名称查找为常量。</p>
<p>您需要显式调用该方法:</p>
<pre class="lang-rb prettyprint-override"><code>def RedundantPod
pod "Pod"
end
target 'targetOne' do
RedundantPod()
end
</code></pre>
<p>或不带大写重命名:</p>
<pre class="lang-rb prettyprint-override"><code>def redundantPod
pod "Pod"
end
target 'targetOne' do
redundantPod
end
</code></pre></p>
<p style="font-size: 20px;">关于ios - 无效的`Podfile` 文件 : uninitialized constant,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/46815915/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/46815915/
</a>
</p>
页:
[1]