Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How can I disable ARC for a single file in a project?

I want to bring a single Objective-C class written using ARC into an old project. The internet provides many references for how to enable ARC for your project and then disable it for single files but I want to do the opposite.

I want to leave the project as it is, i.e. using manual reference counting, and then enable ARC just for the new file. (My searches have failed me here.)

Is this possible? How?

Thank you.

share|improve this question
10  
This isn't a duplicate! It's asks the opposite of the linked question. The linked question does not provide the answer. The title of this question comes up as a Google suggestion for which there is no obvious page. @Caleb's answer is the perfect one. – Carlton Gibson May 10 '12 at 5:48
2  
I have to agree with you there... the linked supposed duplicate thread doesn't mention "-fobjc-arc" once. The people who marked this as a duplicate should be shot out of a giant cannon into the sun. – Herr Grumps Jan 3 at 9:19
1  
The problem linked as a duplicate isn't the correct one. However, this one is and was written earlier: stackoverflow.com/questions/8768176/… – ThomasW Apr 9 at 5:09
1  
Note that when you do a do a Google search, this is the question that comes up first. – ThomasW Apr 9 at 5:11

marked as duplicate by Joe, Chuck, CodaFi, vikingosegundo, Perception May 10 '12 at 4:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 39 down vote accepted

Add the -fobjc-arc flag to any files for which you'd like to enable ARC, as described in the ARC documentation.

share|improve this answer
1  
Thanks Caleb — exactly what was missing from every other page, bar the manual of course :-) thanks for that link. – Carlton Gibson May 10 '12 at 5:48

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