解决方法
要获得html文本的高度,您需要将该HTML信息放入uiwebview.在uiwebview中加载html后,您可以在其委托方法中获得它的高度 –
- (void)viewDidLoad { [super viewDidLoad]; webview.delegate = self; [webview loadHTMLString:@"<div id='foo' style='background: red'>The quick brown fox jumped over the lazy dog.</div>" baseURL:nil]; } - (void)webViewDidFinishLoad:(UIWebView *)webView { NSString *output = [webview stringByEvaluatingJavaScriptFromString:@"document.getElementById(\"foo\").offsetHeight;"]; NSLog(@"height: %@",output); }
但是如果您没有使用webview在屏幕上显示文本(因为您使用的是TTStyleLabel),则可以隐藏webview并在其中加载html.你需要执行一些技巧.