Objective-C Dev Programming Tutorial On Memory Management
Something I’ve found with talking to programmers new to Objective-C is that most often the most confusing concept is memory management.
The reason for this is because in Objective-C memory is managed in a different manner from the mainstream languages typically taught in school (C/C++/Java), and introduces new concepts such as the retain count, and auto release pools.
Mark Johnson has created an extensive collection of video presentations that provide an in depth explanation of Memory Management in Objective-C. This is definitely worth checking out if you are new to the language or this is something you are not totally clear on.
This is the first video:
You can find the rest of the videos on Mark’s site at:
Memory Management Basics Video Tutorial – Click Here
[Source: markj.net]