0

有没有办法摆脱 UIWebView 的边框?现在,即使我将背景设置为白色,在页面外滚动时也会看到边框。

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">
于 2012-11-07T03:58:27.910 回答