I\'m having a random UIWebView crash using iOS8.1 and UIWebView, using an iPhone5. In my tests the crash doesn\'t
UIWebView
make sure you set the UIWebView delegate to nil in the dealloc method
- (void)dealloc { [self.webView stopLoading]; self.webView.delegate = nil; }