I have downloaded the iOS 5 SDK and found that ARC is a great feature of the new Apple compiler. For the time being, many third party frameworks don't support ARC. Could I use ARC for my new code and keep the current retain/release code unchanged? The ARC converter doesn't work here, because some frameworks, such as JSONKit, cannot be converted to ARC by using the converter.

Edit:

The answer is to add -fno-objc-arc to the compiler flags for the files you don't want ARC. In Xcode 4, you can do this under your target -> Build Phases -> Compile Sources.

link|improve this question

69% accept rate
Is this under the NDA? If so, you need to ask these questions in the Apple Developer forums. – thomashw Jun 23 '11 at 4:17
7  
2  
Thanks for clarifying. I've given your answer a vote. – thomashw Jun 23 '11 at 5:25
1  
To clarify, you just add it to the .m file. Not the .h file. – MattDiPasquale Aug 18 '11 at 18:15
I found this conversation: github.com/gowalla/AFNetworking/issues/36 Maybe it help someone how to integrated JSONKit in a iOS5 ARC Supported Project ;-) But i have not try it at the moment... – Jan Oct 17 '11 at 6:48
show 1 more comment
feedback

3 Answers

up vote 42 down vote accepted

The public ARC docs, while not directly clear on this point, seem to suggest that as long as each class is either all ARC or all manually-managed, the classes can be integrated into a single program.

You only can't mix ARC and non-ARC in a single class; the document says that sending retain, release, autorelease, or retainCount messages by any means (including timers and delayed performs, which use @selector) is banned in ARC code. So you can't do non-ARC in an ARC class (because the necessary messages are banned) and you can't do ARC in a non-ARC class (because ARC adds syntax elements that are invalid without ARC).

The same document is a bit clearer on whether you can integrate non-ARC libraries/frameworks into an ARC program: Yes. It doesn't mention whether you can use ARC libraries/frameworks in a program where all your code is non-ARC, but given all of the above, the implication seems to be yes.

link|improve this answer
Thank you! I have figured out how to disable ARC for existing non-ARC classes. – nonamelive Jun 23 '11 at 6:05
Could you share with us what you are doing? – David H Jul 29 '11 at 12:12
1  
@David H: If you meant to address that to the questioner, you should note that the questioner edited their solution into the question. – Peter Hosey Jul 29 '11 at 12:59
feedback

It is not very intuitive how to disable ARC on MULTIPLE files, for a while I was do it one by one until a figured out how to do that.

  1. Select desired files at Target/Build Phases/Compile Sources in Xcode (CMD+click or Shift+click)
  2. PRESS ENTER (double click will reset the selection, so it does't work)
  3. Type -fno-objc-arc
  4. Press Enter or Done
link|improve this answer
It is not really an answer to the question asked here, but a bloody good tip anyway! Voted +1 – Kristof Van Landschoot Apr 25 at 21:44
You are right, it's not, but I always just googled for the switch and this answer one of the top hit. I thought these days most people already know the answer but not this "tip" – Tibidabo Apr 26 at 2:26
feedback

If you want to disable Automatic Reference Counting for Some Files then its really simple to do just follow the steps.You add compiler flags in Targets -> Build Phases -> Compile Sources.

xcode

The flag used is -fno-objc-arc press enter after writing it.! You have to double click on the right column of the row under Compiler Flags. Hope it helps Thanks :)

link|improve this answer
2  
You can use the same method to enable ARC on a specific file in a non-ARC project by using the flag -fobjc-arc. – lnafziger Apr 21 at 4:12
feedback

protected by minitech Mar 3 at 23:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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