标签:style blog color java sp div log ad bs
1 - (void)webViewDidFinishLoad:(UIWebView *)webView 2 { 3 NSString *height_str= [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"]; 4 int height = [height_str intValue]; 5 webView.frame = CGRectMake(0,0,320,height); 6 NSLog(@"height: %@", [webView stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"]); 7 }
UIWebView获得内容的高-作出自适应高的UIWebView
标签:style blog color java sp div log ad bs
原文地址:http://www.cnblogs.com/lxllanou/p/4048505.html