Is there a way to change the color of the gray underside of the UIWebView that's seen when the page is overscrolled?
Did you try this? webView.backgroundColor = [UIColor whitwColor]; does not work for me
Alan
2009-03-18 01:47:05
You may need to post your code, because setting the background color as described here works fine (at least in 2.2.1).
ddoughty
2009-03-23 01:38:52
It works. My wiring was incomplete.
Alan
2009-03-24 01:27:22
Wow, this is odd. Setting the background color in the IB didn't seem to work, but doing it in code had the desired effect. Thanks!
Farid
2010-08-13 07:14:05
Adding self.myWebView.backgroundColor = [UIColor whiteColor]; just replaced the dark grey gradient with a light white/grey gradient. Is there a way to set the overscrolled area to a flat solid color?
Bogatyr
2010-08-23 20:33:00