1

当我通过 WebView 应用程序打开或关闭移动版网站时,我可以在页面内容之外看到默认的灰色背景。如何禁止此操作以使用户无法将页面拖出页面内容边框?

4

1 回答 1

0

您无法删除灰色区域,您可以禁用滚动,这似乎是最好的方法。

我们目前在 UIWebView 上设置了透明背景

webview.opaque = NO;
webview.backgroundColor = [UIColor clearColor];

在 HTML 中

<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0style="background-color:transparent">
于 2013-03-29T01:40:26.410 回答