What is the proper way to manage memory of a class variable / method in objective c? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:07:16Z http://stackoverflow.com/feeds/question/932971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/932971/what-is-the-proper-way-to-manage-memory-of-a-class-variable-method-in-objective 2 What is the proper way to manage memory of a class variable / method in objective c? WillyCornbread 2009-05-31T22:06:11Z 2009-05-31T22:55:24Z <p>I'm learning Objective - C and coming from a garbage collected world. I am creating a class (static) variable of a dictionary and I am unsure if I am doing it properly for memory management or not. I'm using a convenience method so the object should be auto-released, but I don't really know if I need to release or retain it in my class.</p> <p>I can't find clear documentation on how class level objects are managed - any advice is appreciated. Thanks.</p> <pre><code>+(NSDictionary*) polygonNames{ NSDictionary* polygonNames = [NSDictionary dictionaryWithObjectsAndKeys: @"Triangle", @"3", @"Square", @"4", @"Square", @"4", @"Pentagon", @"5", @"Hexagon", @"6", @"Heptagon", @"7", @"Octagon", @"8", @"Nonagon", @"9", @"Decagon", @"10", @"Hendecagon", @"11", @"Dodecagon", @"12", nil]; return polygonNames; } </code></pre> http://stackoverflow.com/questions/932971/what-is-the-proper-way-to-manage-memory-of-a-class-variable-method-in-objective/933048#933048 3 Answer by mipadi for What is the proper way to manage memory of a class variable / method in objective c? mipadi 2009-05-31T22:48:02Z 2009-05-31T22:48:02Z <p>If your data structure is immutable and isn't going to change, you can use a <em>static</em> variable, like so:</p> <pre><code>+ (NSDictionary *) polygonNames { static NSDictionary *polygonNames = nil; if (!polygonNames) polygonNames = [[NSDictionary alloc] initWithObjectsAndKeys:/* objects and keys */]; return polygonNames; } </code></pre> http://stackoverflow.com/questions/932971/what-is-the-proper-way-to-manage-memory-of-a-class-variable-method-in-objective/933064#933064 1 Answer by rastersize for What is the proper way to manage memory of a class variable / method in objective c? rastersize 2009-05-31T22:55:24Z 2009-05-31T22:55:24Z <p>I can recommend the site CocoaDev.com. On which you will find the following rule of thumb:</p> <ul> <li>If you alloc, retain, or copy it, it's your job to release it. Otherwise it isn't.</li> <li>If you alloc, retain, or copy it, it's your job to release it. Otherwise it isn't. Yes: read this again!</li> </ul> <p>Search for "rules of thumb". As I'm not allowed to add hyperlinks..</p> <p>Basically all class methods named <code>dictionary*</code>, <code>array*</code> and so on will return an auto-released object which you don't have to retain/release.</p> <p>For further reading I can recommend the "memory management" page.</p>