I've been looking at many code samples on the internet. If I add an UIWebView from interface builder as an IBOutlet. Is it right that in the dealloc method of the controller, I need to do the following?
[webView stopLoading];
webView.delegate = nil;
[webView release];
and what about in the viewDidUnload method?