Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIWebView underside

Tags:

iphone

Is there a way to change the color of the gray underside of the UIWebView that's seen when the page is overscrolled?

like image 674
Alan Avatar asked Mar 17 '09 17:03

Alan


1 Answers

Just set the backgroundColor property. Below I mentioned swift 3 syntax, currently instead of Color, Xcode is providing color plate for mentioning color

webview.backgroundColor = Color.white
like image 73
Loren Avatar answered Sep 26 '22 23:09

Loren