ios - ARC 的编译器指令
<p><p>如何放置编译器指令来排除非 ARC 代码,以便共享代码可用于使用 ARC 的项目和不使用 ARC 的项目?</p>
<p>例如:</p>
<pre><code>MyClass *myClass = init];
...
#if NOT_USING_ARC
;
#endif
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你可以使用:</p>
<pre><code>#if __has_feature(objc_arc)
...
#else
...
#endif
</code></pre></p>
<p style="font-size: 20px;">关于ios - ARC 的编译器指令,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10638163/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10638163/
</a>
</p>
页:
[1]