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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ok, hate to answer my own question but it was easier then I thought…
[webView stringByEvaluatingJavaScriptFromString:@”window.scrollBy(0,180);”];