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.
使用技巧在 XCode 中关闭 ARC 很容易Build Phases,但是是否可以指定使用XCodeConfig?
Build Phases
XCodeConfig
在我看来,使用 XCodeConfig 方法(如果可能)更灵活。
ARC 已隐式关闭。
您可以将其添加到您的 xcconfig 中:
CLANG_ENABLE_OBJC_ARC = NO
但是您仍然会遇到项目/目标/文件本地构建设置覆盖该行为的问题。您应该能够 grep 您的 Xcode 项目CLANG_ENABLE_OBJC_ARC并objc-arc找到它实际启用的位置。
CLANG_ENABLE_OBJC_ARC
objc-arc
您可以使用以下选项在 .xcconfig 文件中打开或关闭 ARC: