vote up 0 vote down star
1

I'm running into a case where I have in-application HTML documentation that uses a dark background, but the default scroll indicator for UIWebView is getting lost in that background. The following is an example of this:

Image of UIWebView dark scroller

With UIScrollView, which UIWebView resembles in its behavior, you can set the indicatorStyle property to UIScrollViewIndicatorStyleWhite, which results in the desired behavior:

alt text

I can't seem to find a similar property in the exposed interface for UIWebView. Is there a CSS trick or other way to force the scroll indicator to a lighter style?

flag

2 Answers

vote up 0 vote down check

There is no public API for this in the 2.x SDK. File a bug/case/radar asking for it in 3.0.

link|flag
I was afraid as much, but I'd hoped that someone had a trick that I'd missed. I'll file a feature enhancement request. – Brad Larson Apr 6 at 21:07
vote up 0 vote down

Scan the subviews and test for a UIScrollView. You can then programatically set the indicator.

link|flag
Unfortunately, UIWebView uses a UIScroller to handle its internal scrolling (seen by traversing the internal view hierarchy). This is a privately defined class, so it's a really bad idea to touch it. – Brad Larson Apr 1 at 3:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.