I use IUWebView like chat window and after adding new message in the bottom of view I wanna scroll down view programmicaly, how can I do it?
Implement this method in your UIWebView Delegate.
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
[webView stringByEvaluatingJavaScriptFromString:@"window.scrollTo(document.body.scrollWidth, document.body.scrollHeight);"];
}
Have you tried something like this:
[mywebview stringByEvaluatingJavaScriptFromString:@"window.scrollTo(x, y);"]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With