Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With last version of iOS Apple has implemented Automatic Reference Counting for Objective-C, but I don't understand as works.

share|improve this question
1  
Did you try looking at the documentation? Or the other documentation? – Josh Caswell Oct 13 '11 at 17:59
Or how about just doing a search here: stackoverflow.com/questions/6385212/… – Josh Caswell Oct 13 '11 at 17:59
Thank you for your help, but I wanted only a clear informations without read many pages of documentation... otherwise there would be no reason to ask questions on stackoverflow... – A.DIMO Oct 13 '11 at 21:02
Stack Overflow expects you to do some research on your own before posting here. It is a resource for when you have already tried to solve your problem yourself. In addition, as I pointed out, there already exist questions here which you could have read. – Josh Caswell Oct 13 '11 at 21:29

closed as not a real question by occulus, Mehul, Brooks Moses, Mark Hildreth, adeneo Dec 15 '12 at 8:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 10 down vote accepted

Automatic reference counting inserts retain and release messages into your code for you at compile-time, following the normal conventions. So it's exactly as if you did the memory management yourself manually, except that the compiler is smart enough to be able to write that bit for you, and much less likely to make a mistake.

So it's not garbage collection, it's more like a (very simple) form of static analysis. And you still get 100% deterministic memory management and little overall change in runtime costs, as per the caveats raised by Catfish_Man below.

share|improve this answer
2  
No change in runtime costs isn't exactly accurate. The compiler has to be significantly more conservative than a human would be about object lifetime, typically resulting in about 20% more refcount churn. On the other hand, ARC has some neat tricks it does to avoid autoreleasing in many cases, which can lower memory usage and improve performance. Whether it's a win or a loss performance-wise depends on the exact code in question. – Catfish_Man Oct 13 '11 at 15:15
Good point. I've toned down my answer and made an explicit reference to your comment. – Tommy Oct 13 '11 at 15:31

Automatic Reference Counting implements automatic memory management for Objective-C objects and blocks, freeing the programmer from the need explicitly insert retains and releases. It does not provide a cycle collector; users must explicitly manage lifetime instead.

Read this spec - Automatic Reference Counting

share|improve this answer

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