我想在标签上显示html文字(样式标签)。我收到的是html格式的文本。如何计算html字符串的高度?
答案 0 :(得分:4)
要获得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。你需要执行一些技巧。