Does the order of statements in the dealloc method matter? Does the [super dealloc] need to be at the top of the method? Does it matter?
Also in e.g. viewDidLoad. Should [super viewDidLoad] be at the top of the method?
|
|
It ABSOLUTELY matters. What you do depends on whether you're using Automatic Reference Counting (ARC) or manual reference counting. Using Manual Release-RetainManual Release-Retain (MRR) is default memory management for all versions of Mac OS X, and the only way to handle memory until the latest Xcode for iOS. With MRR, So your code should look like this:
The super dealloc actually frees the memory. Think about that. If you access an instance variable after that, like this:
...it means that the instance variable is invalid. As Apple explains it in the Memory Management Programming Guide:
You do this by disposing of any resources your object holds, and calling Generally, when constructing (or loading) let the super do the work first. When tearing things down, do your work first. See also:
With Automatic Reference CountingAutomatic Reference Counting (ARC) is the new way of doing memory management introduced in Xcode 4.2. With ARC, the compiler adds memory management code when compiling your application. It has some wrinkles you'll want to read more about before using it (mostly, limited compatibility with older OS versions). With ARC, you don't (and can't) call See also:
|
|||||||||||
|
It should go at the end. The idea is to say "I've torn down all the bits I've done, so now I'll let my parent class do the same" (recursively)
It should go at the top. The parent class should do what it needs to do to load its view before the subclass loads its parts, because it might rely on something the parent class needs to set up first. |
|||||
|