Memory Management in Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:42:02Z http://stackoverflow.com/feeds/question/106627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106627/memory-management-in-objective-c 6 Memory Management in Objective-C Andrew 2008-09-20T00:52:08Z 2008-12-17T20:31:46Z <p>I come from a C/C++ background and the dynamic nature of ObjectiveC is somewhat foreign to me, is there a good resource anyone can point me to for some basic memory management techniques in ObjectiveC? ex. retaining, releasing, autoreleasing</p> <p>For instance, is it completely illegal to use a pointer to an Objective C object and treat it as an array? Are you forced to use NSArray and NSMutableArray for data structures?</p> <p>I know these are pretty newbie questions, thanks for any help you can offer me.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/106629#106629 15 Answer by Ben Hoffstein for Memory Management in Objective-C Ben Hoffstein 2008-09-20T00:52:45Z 2008-09-20T00:52:45Z <p>Here you go:</p> <p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html</a></p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/106692#106692 2 Answer by Kevin Conner for Memory Management in Objective-C Kevin Conner 2008-09-20T01:20:06Z 2008-09-20T01:20:06Z <p>If it's an array, feel free to iterate with a pointer. Regular arrays are still governed by C. If it's a NSArray, read the NSArray docs. If they say to do it a particular way, do it that way. When writing for OS X, do it by the book.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/107022#107022 2 Answer by craigb for Memory Management in Objective-C craigb 2008-09-20T03:53:10Z 2008-09-20T03:53:10Z <p>Objective-C is just a superset of C. Anything you can do in C is valid in Objective-C.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/107043#107043 2 Answer by heckj for Memory Management in Objective-C heckj 2008-09-20T04:01:20Z 2008-09-20T04:01:20Z <p>You can certainly use arrays and do your own memory management. The biggest component is that if you're creating anything that's an NSObject subclass, and you create it with a [XXX alloc] method, or if you get it from another copy with [xxx copy], then you've got the responsibility to match that with an associated release.</p> <p>If get a variable from anywhere and intend to keep it around for more than the immediate usage that you're executing through, then make sure you invoke a [... retain] on it. </p> <p>The link <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html</a> has all the details, and is definitely the first place to read.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/115012#115012 0 Answer by www.stray- for Memory Management in Objective-C www.stray- 2008-09-22T14:02:49Z 2008-09-22T14:02:49Z <p>It's probably also useful to note that for class messages like NSString + (NSString *)stringWithFormat: (basically, helper messages that allocate an object for you rather than requiring you to allocate the object yourself), the resulting object is auto-released unless you explicitly retain it. </p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/126149#126149 0 Answer by benzado for Memory Management in Objective-C benzado 2008-09-24T09:11:10Z 2008-09-24T09:11:10Z <p>Here are the rules:</p> <ol> <li>If you create an object by calling <code>alloc</code> or <code>copy</code>, you own it and must <code>release</code> it when you're done.</li> <li>If you didn't create an object, but want it to ensure it sticks around before control returns to the run loop (or, to keep things simple, your method returns), send it a <code>retain</code> message and then <code>release</code> it later when you're done.</li> <li>If you create an object and want to return it from your method, you are obligated to release it, but you don't want to destroy it before the caller gets a chance to see it. So you send it <code>autorelease</code> instead, which puts it in the Autorelease Pool, which is emptied once control gets back to the program's event loop. If nobody else retains the object, it will be deallocated.</li> </ol> <p>Regarding arrays, you are free to do something like this:</p> <pre><code>NSObject *threeObjects[3]; threeObjects[0] = @"a string"; threeObjects[1] = [NSNumber numberWithInt:2]; threeObjects[2] = someOtherObject; </code></pre> <p>Reasons to use NSArray anyway:</p> <ul> <li>NSArray will take care of retaining objects as you add them and releasing them as you remove them, whereas in a plain C array you will have to do that yourself.</li> <li>If you are passing an array as a parameter, an NSArray can report the count of objects it contains, with a plain C array you'll need to pass a count along too.</li> <li><p>Mixing square bracket meanings on one line feels weird:</p> <p><code>[threeObjects[0] length]</code></p></li> </ul> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/146720#146720 10 Answer by mmalc for Memory Management in Objective-C mmalc 2008-09-28T20:54:03Z 2008-10-06T15:52:56Z <p>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 'heckj' and 'benzado'...</p> <p>The fundamental rules of memory management are provided in Apple's documentation in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html" rel="nofollow">Memory Management Rules</a>.</p> <p>Apropos of the answer from 'www.stray-bits.com': stating that objects returned from "non-owning" methods are "autoreleased" is also at best misleading. You should typically not think in terms of whether or not something is "autoreleased", but simply consider the memory management rules and determine whether by those conventions you own the returned objet. If you do, you need to relinquish ownership...</p> <p>One counter-example (to thinking in terms of autoreleased objects) is when you're considering performance issues related to methods such as <code>stringWithFormat:</code>. Since you typically(1) don't have direct control over the lifetime of these objects, they can persist for a comparatively long time and unnecessarily increase the memory footprint of your application. Whilst on the desktop this <em>may</em> be of little consequence, on more constrained platforms this can be a significant issue. It is therefore considered best practice on all platforms to use the <code>alloc</code>/<code>init</code> pattern, and on more constrained platforms, where possible you are strongly discouraged from using any methods that would lead to autoreleased objects.</p> <p>(1) You can take control by using your own local autorelease pools. For more on this, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html#//apple_ref/doc/uid/20000047" rel="nofollow">Apple's Memory Management Programming Guide</a>.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/159093#159093 1 Answer by Ashley Clark for Memory Management in Objective-C Ashley Clark 2008-10-01T18:42:22Z 2008-10-01T18:42:22Z <p>Something to be aware of if you use an C-style array to store objects and you decide to use garbage collection is you'll need to allocate that memory with <code>NSAllocateCollectable(sizeof(id)*size, NSScannedOption)</code> and tag that variable as <code>__strong</code>.</p> <p>This way the collector knows that it holds objects and will treat objects stored there as roots during that variables lifetime.</p> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/278396#278396 1 Answer by Peter Hosey for Memory Management in Objective-C Peter Hosey 2008-11-10T16:39:39Z 2008-11-10T16:39:39Z <blockquote> <p>For instance, is it completely illegal to use a pointer to an Objective C object and treat it as an array?</p> </blockquote> <p>If it's not an array, then yes.</p> <blockquote> <p>Are you forced to use NSArray and NSMutableArray for data structures?</p> </blockquote> <p>No. You can use C arrays, and you should be able to use C++ STL vectors (although I don't use C++, so I don't know specifics of how).</p> <p>But there's no reason not to use <code>NS{,Mutable}Array</code>. Fear not the Cocoa frameworks, for they are your friend.</p> <p>And don't forget the other collection types, such as <code>NS{,Mutable}Set</code> and <code>NS{,Mutable}Dictionary</code>.</p>