With last version of iOS Apple has implemented Automatic Reference Counting for Objective-C, but I don't understand as works.
|
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.
|
Automatic reference counting inserts 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. |
|||||||
|
|
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 |
|||
|
|