Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ARC コンパイル オプションを使用する場合と使用しない場合で作業したい iOS リファクタリング ライブラリがあります。#ifdefARCが利用可能かどうか、のようにコンパイル中に検出する方法はありますか?
#ifdef
はい、次を使用できます。
#if __has_feature(objc_arc) ... #endif
最新バージョンのLLVMを使用している場合でも、-fobjc-arcオプションを使用してコンパイルしている場合にのみ、これはtrueと評価されます。
-fobjc-arc