vote up 1 vote down star
3

Hi

I have a UIWebView And how can i get It's scroll position ?

I know, that UIWebView has a UIScroller subview. But I can't get offset of this UIScroller (((

flag

2 Answers

vote up 4 vote down check

This trick works for me.

UIWebView *webView;
int scrollPosition = [[webView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue];
link|flag
Thanks. Super. It's works May be you know, how can I get WebView content size, with javaScript? (window.innerHeight doesn't work) – oxigen Apr 27 at 7:56
vote up 0 vote down

I don't think there is an official way. You may have to iterate through it's subviews until you find an object of the type UIScrollView.

link|flag
It has not UIScrollView subview It has only undocumented UIScroller subview (( – oxigen Apr 24 at 15:32

Your Answer

Get an OpenID
or

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