如何计算html字符串的高度?
我想在标签上显示 html 文本(TTStyleLabel)。我正在接收 html 形式的文本。如何计算html字符串的高度?
I want to display html text on a label(TTStyleLabel). I am receieving text in form of html. How do I calculate height of html string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取 html 文本的高度,您需要将该 html 信息放入 uiwebview。在 uiwebview 中加载 html 后,您可以在其委托方法中获取其高度,如下所示 -
但是如果您没有使用 webview 在屏幕上显示文本(因为您使用的是 TTStyleLabel),您可以隐藏 webview 并加载 html它。你需要表演一些技巧。
To get height of html text you need to put that html info uiwebview. After loading the html in uiwebview you can get its height in its delegate methods like this -
But if you are not displaying the text on the screen using the webview (as you are using a TTStyleLabel) you can hide the webview and load the html in it. You need to perform some tricks.