10
votes
Memory Management in Objective-C
It is generally not useful to repeat the basic rules of memory management, since almost invariably you make a mistake or describe them incompletely -- as is the case in the answers provided by 'hec …
4
votes
Object allocate and init in Objective C
As others have noted, the two code snippets you show are not equivalent (for memory management reasons).
As to why the former is chosen over the latter:
The correct formulation of the latte …
3
votes
How does the NSAutoreleasePool autorelease pool work?
NSAutoreleasePool: drain vs. release
Since the function of drain and release seem to be causing confusion, it may be worth clarifying here (although this is cove …
13
votes
What is the cost of using autorelease in Cocoa?
There are two costs:
(Assuming you have an option to avoid autoreleased objects.) You effectively unnecessarily extend the lifetime of your objects. This can mean that your memory …
