I am using ARC successfully in my project, however, I have encountered a few files, namely in unit tests and mock objects, where the rules of ARC are a little more fragile right now. I recall hearing that there was a way to disable ARC on a per file basis. I have been unable to find this option in any public and private docs.

Is this possible? And, how do I disable ARC on a per file basis?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 316 down vote accepted

It is possible to disable ARC for individual files by adding the -fno-objc-arc compiler flag for those files.

You add compiler flags in Targets -> Build Phases -> Compile Sources. You have to double click on the right column of the row under Compiler Flags. You can also add it to multiple files by holding the cmd button to select the files and then pressing enter to bring up the flag edit box.

I created a sample project that has an example: https://github.com/jaminguy/NoArc

xcode

See this answer for more info: Disable Automatic Reference Counting for Some Files

link|improve this answer
13  
So, the place to add this flag isn't too intuitive. But, in Xcode 4, in build phases, and compile sources, there are actually two columns. One for the file name, and another for the compile flags for that one file. This is where you enter this specific compiler flag. – casademora Jul 26 '11 at 17:58
2  
Can you specify for a directory, i.e., for all files in a directory? What about for a Group? – MattDiPasquale Aug 9 '11 at 13:45
3  
No directories. Only one single file at a time in the build settings :( – casademora Aug 9 '11 at 15:15
6  
@casademora you cannot get enough upvotes for this piece of information. Thank you. – theTRON Oct 28 '11 at 0:06
2  
Yes, this works but Xcode 4.2.1 still generates unsightly ARC errors on the editor window, although it eventually compiles just fine. You might want to put all your non-ARC files into a static library and link that to your main target. – adib Dec 4 '11 at 14:05
show 7 more comments
feedback

Disable ARC on MULTIPLE files:

  1. Select desired files at Target/Build Phases/Compile Sources in Xcode
  2. PRESS ENTER
  3. Type -fno-objc-arc
  4. Press Enter or Done

;)

link|improve this answer
2  
Thx! Been looking for this feature a long time. Double-clicking doesnt work when selected multiple rows, but pressing enter does. So weird. – bobmoff Apr 12 at 13:31
Oh wow. I'd spend all my karma to upvote this again. Thanks for sharing! – jemmons May 4 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.