What is the proper way to manage memory of a class variable / method in objective c? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:07:16Zhttp://stackoverflow.com/feeds/question/932971http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/932971/what-is-the-proper-way-to-manage-memory-of-a-class-variable-method-in-objective2What is the proper way to manage memory of a class variable / method in objective c?WillyCornbread2009-05-31T22:06:11Z2009-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#9330483Answer by mipadi for What is the proper way to manage memory of a class variable / method in objective c?mipadi2009-05-31T22:48:02Z2009-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#9330641Answer by rastersize for What is the proper way to manage memory of a class variable / method in objective c?rastersize2009-05-31T22:55:24Z2009-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>