I\'m experiencing crashes of an app that uses UIWebView. Usually it\'s when page is not fully loaded and UIWebView is sent stopLoading selector. Or when UIWebView fully load
View Will Disappear is an working option to the accepted answer:
// ARC - (void)viewWillDisappear:(BOOL)animated{ [self.webView setDelegate:nil]; [self.webView stopLoading]; }
This works for iOS 6 perfectly.