Black line appearing at bottom of UIWebView. How to remove?

回眸只為那壹抹淺笑 提交于 2019-11-29 19:50:41

I had same issue and solution is given below :

  1. Set UIWebView's opaque to NO
  2. Set UIWebView's backgroundcolor to clear color.

Note : Both things provided above are necessary.


Other solutions while using above one

webView.scrollView.backgroundColor = UIColor.whiteColor()

OR

The meta to go in the head tag of HTML

<meta name="viewport" content="initial-scale=1, maximum-scale=1">
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!