ios - 创建带有/不带有自动引用计数的 Cocoapods
<p><p>我刚开始学习制作 cocoapods。我按照本教程进行操作,一切正常。</p>
<p> <a href="http://code.tutsplus.com/tutorials/creating-your-first-cocoapod--cms-24332" rel="noreferrer noopener nofollow">http://code.tutsplus.com/tutorials/creating-your-first-cocoapod--cms-24332</a> </p>
<p>问题是一些项目文件使用 ARC,但有些没有。如果我写这段代码,</p>
<pre><code>s.requires_arc = false
</code></pre>
<p>我遇到了这样的错误。</p>
<blockquote>
<p>ERROR | xcodebuild:WWAutoupdate/WWAutoupdate/Classes/Library/Hawk/Base64/NSData+Base64.m:39:2:
error: This library requires automatic reference counting</p>
</blockquote>
<p>如果我不写,我会得到另一个错误,不使用 arc。如何将 arc 和 non-arc 文件放在我的 cocoapods 中?在我的构建阶段,我已经指定了 -fno-objc-arc。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>requires_arc</code> 可以采用 <a href="https://guides.cocoapods.org/syntax/podspec.html#requires_arc" rel="noreferrer noopener nofollow">array of files</a>例如<code>requires_arc = ["文件夹/no-arc/*"]</code></p></p>
<p style="font-size: 20px;">关于ios - 创建带有/不带有自动引用计数的 Cocoapods,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37522944/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37522944/
</a>
</p>
页:
[1]