http://blog.csdn.net/matrixhero/article/details/8443972

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
NSString *height_str= [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"];
int height = [height_str intValue];
webView.frame = CGRectMake(0,0,320,height);
NSLog(@"height: %@", [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"]);
}

 posted on 2015-06-16 14:21  PoloKey  阅读(143)  评论(0编辑  收藏  举报