I have some problem when I load a web view inside my app.
Problem appears only with ios8, while in ios7 is ok
this is the code
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear: animated];
[ [ UIApplication sharedApplication ] setStatusBarHidden: YES withAnimation: UIStatusBarAnimationNone ];
webView.scrollView.minimumZoomScale = 1.0;
webView.scrollView.maximumZoomScale = 1.0;
webView.scrollView.bouncesZoom = NO;
webView.scrollView.multipleTouchEnabled = NO;
webView.scrollView.bounces = NO;
webView.mediaPlaybackRequiresUserAction = NO;
webView.allowsInlineMediaPlayback = YES;
webView.scalesPageToFit = YES;
self.view = webView;
webView.dataDetectorTypes = UIDataDetectorTypeNone;
NSURL *url = [[NSBundle mainBundle] URLForResource:@"dv/index" withExtension:@"html"];
[ webView loadRequest:[NSURLRequest requestWithURL: url ] ];
}
and this is the result https://dl.dropboxusercontent.com/u/552704/view.png