I\'m having a random UIWebView
crash using iOS8.1 and UIWebView
, using an iPhone5. In my tests the crash doesn\'t
[super viewDidLoad];
[[MPVolumeView alloc] init]; <------ add this line, that will be ok too.
NSURLRequest * urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.amazon.com"]];
self.webView.layer.cornerRadius = 0;
self.webView.userInteractionEnabled = YES;
self.webView.multipleTouchEnabled = YES;
self.webView.backgroundColor = [UIColor clearColor];
self.webView.scrollView.scrollEnabled = NO;
self.webView.scrollView.bounces = NO;
[self.webView loadRequest:urlRequest];