views:

257

answers:

1

Hi,
I Have a UIWebView that displays third party web page (not a page I can control)
I need a way to scroll the content of the web view to a specific position in that page.
Any idea how to implement it?

Thanks.

A: 

Ok, hate to answer my own question but it was easier then I thought...

[webView stringByEvaluatingJavaScriptFromString:@"window.scrollBy(0,180);"];

lnetanel