本文介绍了如何启用/禁用“自动引用计数"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Xcode 4.2,如何启用/禁用自动引用计数"?

Using Xcode 4.2, how can one enable/disable "Automatic Reference Counting"?

应答在构建设置"下,根据是否要启用ARC翻转是"和否".

ANSWERED Under Build Settings, flip "yes" and "no" depending whether you want ARC enabled.

推荐答案

全局:

转到构建设置",查找"Apple LLVM编译器3.0-语言".设置领域将"Objective-C自动引用计数"更改为否".

Go to "Build Settings", look for "Apple LLVM compiler 3.0 - Language". Set the field"Objective-C Automatic Reference Counting" to "No".

对于单个文件:

转到构建阶段",选择文件,双击编译器标志"列,然后放入其中的"-fno-objc-arc".

Go to "Build Phases", select the file, double-click the "Compiler Flags" column and put"-fno-objc-arc" in it.

这篇关于如何启用/禁用“自动引用计数"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-01 13:16