I have a query about the use of viewDidUnload and dealloc in a simple implementation of UITableViewController.
Essentially I'd like to know more about weather or not both viewDidUnload and dealloc are always called in succession in the tear down process. Is it possible that dealloc could be called on the controller without viewDidUnload ?
In either case, releasing the same iVars and retained references in both functions wouldn't cause any problems - but I was wondering if anyone knew for sure or could shed some insight into the tear down process.
Cheers,