iPhone: [super viewDidUnload] calling order

iphone, objective-c

Solution

This depends on what the superclass does in `viewDidUnload`. If it's just a standard `UIViewController`, either will do because `-[UIViewController viewDidUnload]` does nothing.

Problem

I would like to know if there is any difference between calling [super viewDidUnload] before realeasing properties or after it. Thank you! ``` self.webView = nil; self.fullText = nil; [super viewDidUnload]; ``` or ``` [super viewDidUnload]; self.webView = nil; self.fullText = nil; ```

Original source

Related problems