vote up 2 vote down star

correct example:

- (void)dealloc {
    [viewController release];
    [window release];
    [super dealloc];
}

wrong example:

- (void)dealloc {
    [super dealloc];
    [viewController release];
    [window release];
}

Althoug in alsmost all other cases when overriding a method I would first call the super's method implementation, in this case apple always calls [super dealloc] in the end. Why?

flag

58% accept rate

4 Answers

vote up 4 vote down check

Its just a guideline. You can call other instructions after [super dealloc]. however you can not access variables of the superclass anymore because they are released when you call [super dealloc]. Its always safe to call the superclass in the last line.

Also KVO and depended (triggered) keys can affect side effects if they are depended of already release member varibles.

link|flag
vote up 5 vote down

I don't know anything about programming for the iPhone, but I would assume that it is for the same reason that destructors need to be called in reverse order. You want to make sure that all your 'garbage' is cleaned up before calling your superclass. If you do it the other way around things can get messy. For instance, if your destructor needs to access memory that the super destructor has already freed:

class X {
    private Map foo;

    function __construct() {
        foo = new Map();
    }

    function __destruct() {
        foo.free;
    }
}

class Y extends X {
    function __construct() {
        super.__construct();
        map.put("foo", 42);
    }

    function __destruct() {
        super.__destruct();
        if (map.containsKey("foo")) {    // boooooooooom!
            doSomething();
        }
    }
}

You may not encounter this problem in your code, because "you know what you're doing", but it is a safer and overall better practice not to do such things.

link|flag
Anyone care to elaborate why this was downvoted? – n3rd May 26 at 11:11
Anyone care to elaborate why this was upvoted? – d03boy May 26 at 15:11
My guess is because it answered the question, at least partially. A downvote on the other hand commonly implies that the answer was unhelpful or just plain wrong. If it was wrong I would very much like to know why so I can learn from my mistake. Or were you just being polemic? – n3rd May 26 at 15:44
I didn't downvote it; it's a good answer. However, the downvote is fair enough since it's a guess, not specific to the Cocoa framework. – Adam Ernst May 26 at 19:15
vote up 2 vote down

[super dealloc] is freeing up the memory used by your object, including the pointers to viewController and window. Referring to variables after you've freed them is hazardous at best.

See this answer.

link|flag
vote up 0 vote down

You practically almost have [super dealloc] at the end because it frees up the variables of the superclass and they can no longer be accessed.

One exception is if you have a subclass of UITableViewController that is using another class as its table view delegate. In that case you have to release the table view delegate after [super dealloc] because the table view is referencing the table view delegate and the table view has to be released first.

link|flag

Your Answer

Get an OpenID
or

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