Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way of changing the scroll position of a UIWebView based on the current URL?

For example:

if (webView = thisURL) {
webView scrollPosition = ...
}
elseif (webView = thisURL) {
webView scrollPosition = ...
}

Thanks

share|improve this question
possible duplicate of how to set scroll position on uiwebview – Mark Jan 19 at 9:10
Webview has a property called scrollView.Change the offset of the scrollview like; webview.scrollView.contentOffset = CGPointMake(100, 0) – insane-36 Jan 19 at 10:55

closed as not constructive by Anoop Vaidya, Mark, Gajotres, EdChum, Graviton Jan 22 at 3:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Implement the UIWebViewDelegate, then make something like this:

-(void) webViewDidFinishLoad:(UIWebView *)webView{
    NSString *currentURL = webView.request.URL.absoluteString;
    if([currentURL isEqualToString:@"http://www.foo.com/uri"])
    [webView stringByEvaluatingJavaScriptFromString:@"scrollTo(100,100);"];
}
share|improve this answer

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