Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法摆脱 UIWebView 的边框?现在,即使我将背景设置为白色,在页面外滚动时也会看到边框。
您无法删除灰色区域,您可以禁用滚动,这似乎是最好的方法。
我们目前在 UIWebView 上设置了透明背景
webview.opaque = NO; webview.backgroundColor = [UIColor clearColor];
在 HTML 中
<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0style="background-color:transparent">