up vote 2 down vote favorite
2
share [g+] share [fb]

I am looking for good explanations out there. I have a 1000 pages book about objective-c, but unfortunately the part about memory management, retain counting, is described pretty bad and hard to understand.

link|improve this question

58% accept rate
feedback

closed as not a real question by Lord Torgamus, YOU, jcolebrand, Mark Trapp, Juan Manuel Mar 31 '11 at 18:03

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. See the FAQ.

protected by YOU Mar 31 '11 at 15:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

A quick explaination: Anything you alloc, new, retain or copy you must also release. Also, anything you DON'T alloc or copy you should retain if you plan on holding on to it beyond the current message loop (or you risk it being autoreleased and becoming an invalid reference).

link|improve this answer
...and rememeber that anything starting init... follows these rules. initWithImage initWithoutClosingTheFridgeDoor etc. You should also follow these rules when implementing classes. init... messages should return an object with a retain count of one and so on. – Roger Nolan Apr 2 '09 at 19:59
1  
This is not quite correct. From the Apple documentation developer.apple.com/mac/library/documentation/cocoa/conceptual/…: You take ownership of an object if you create it using a method whose name begins with “alloc” or “new” or contains “copy” (for example, alloc, newObject, or mutableCopy), or if you send it a retain message. – Florin Aug 7 '10 at 15:25
Eric, I think you mean alloc, retain or copy. :) – h4xxr Aug 7 '10 at 15:50
feedback

This is one of the most concise good explanations I've found:

http://www.dikant.de/2007/08/23/cocoa-memory-management-101

link|improve this answer
feedback

CocoaDev always has pretty good resources and their intro to memory management is no exception.

link|improve this answer
feedback

Of course there are plenty of free resources for learning about memory management, but if you're really new to the topic and would prefer a visual approach, Steve Scott (the guy who runs the Mac Developer Network) has a great, soup-to-nuts set of training videos that you can download for USD $10: http://www.mac-developer-network.com/videotraining/beginner/vid001/. It's basically a lecture that goes beyond "using release and autorelease" and talks about how the OS manages memory. Very helpful if you missed this stuff in Comp. Sci. 101.

FWIW, I used a set of three "If" conditions that were helpful when I was starting out (e.g., "If I allocate or copy and object, then..."). It was easier for me to remember these three conditions at first than the complete set of rules. I wrote up a short tutorial that uses these "brain triggers" to explain the rules in case it's helpful to anyone else. http://www.clintharris.net/2009/three-brain-triggers-for-objc-memory-mgmt/

link|improve this answer
feedback

Specifically for memory management around use of NIB's and IBOutlet, this is the shortest and clearest description I have seen:

http://blog.airsource.co.uk/index.php/2008/12/23/memory-management-and-nibs/

link|improve this answer
feedback

For me Apple's Memory Management Programming Guide worked quite well.

It explains right at the beginning the basics so you can start working. But it also goes into more advanced subjects if you are interested.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.