当前位置: 代码迷 >> Web前端 >> UIWebView滚动究竟部的代码
  详细解决方案

UIWebView滚动究竟部的代码

热度:489   发布时间:2012-06-27 14:20:08.0
UIWebView滚动到底部的代码
实现UIWebViewDelegate中的

- (void)webViewDidFinishLoad:(UIWebView *)webView{
    NSInteger height = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight;"] intValue];
    NSString* javascript = [NSString stringWithFormat:@"window.scrollBy(0, %d);", height];  
    [webView stringByEvaluatingJavaScriptFromString:javascript];
}

原文地址:
http://stackoverflow.com/questions/3594851/how-can-i-scroll-programmatically-to-the-bottom-in-a-uiwebview