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.
|
1
|
|
|
|
|
|
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). |
||
|
|
|
This is one of the most concise good explanations I've found: |
||
|
|
|
|
CocoaDev always has pretty good resources and their intro to memory management is no exception. |
||
|
|
|
|
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. |
||
|
|
|
|
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/ |
||
|
|
|
|
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/ |
||
|
|
