-(void)webViewDidFinishLoad:(UIWebView *)webView { //HTML5的高度 NSString *htmlHeight = [webView stringByEvaluatingJavaScriptFromString:@”document.body.scrollHeight”]; //HTML5的寬度 NSString *htmlWidth = [webView stringByEvaluatingJavaScriptFromString:@”document.body.scrollWidth”]; //寬高比 float i = [htmlWidth floatValue]/[htmlHeight floatValue];
//webview控制元件的最終高度 float height = screenWidth/i;
//後面的程式碼 //重新設定webView的高度,重新整理tableView 設定cell的高度 _tuwenWeb.frame = CGRectMake(0, 0, self.view.frame.size.width, height); [self.tableView reloadData]; 。。。。。。
}