本文介绍了在 UIWebview 中添加了空格 - 在 iOS7 & 中删除 UIWebView 空格iOS8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在加载本地 html 文件,因为 iOS7 在 UIWebView 的顶部添加了空白.(我无法发布图像,因为我没有足够的积分.)图片可以在这里看到 - 从 iPhone 模拟器快照,uiwebview被黑框包围,html内容是灰色的,但是上面加了白色

Im loading local html files, since iOS7 there is added white space on top in the UIWebView.(I cant post an image as i do not have enough points.)image can be seen here- snap shot from iPhone simulator, uiwebview surrounded by black frame, the html content is grey, but there is white added above it

我尝试使用

[webView stringByEvaluatingJavaScriptFromString:@"document. body.style.zoom = 5.0;"];
webView.scalesPageToFit = NO;

09-02 08:13