vote up 1 vote down star
1

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.

flag

58% accept rate

6 Answers

vote up 5 vote down

A quick explaination: Anything you init, retain or copy you must also release. Also, anything you DON'T init 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|flag
...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 at 19:59
vote up 3 vote down

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

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

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

http://stackoverflow.com/questions/106627/memory-management-in-objective-c http://stackoverflow.com/questions/370427/learn-obj-c-memory-management

They've got some simple answers, but also links to Apple's documentation.

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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