iOS - 不同格式的UILabel
有可能有这样的 UILabel 吗?
TITLE_LABEL 详细说明标签\n 结局是这样的
我希望你明白我的意思。抱歉,但我是意大利人:) TITLE_LABEL是一个具有一定格式的标签。 长描述标签是一个从 TITLE_LABEL 末尾开始的 UILabel,其大小将为 TITLE_LABEL.frame.size.width + 一些像素,当标签中的空格结束时,文本在 TITLE_LABEL 下继续左对齐。 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 NSString 扩展方法, sizeWithFont 了解 TITLE_LABEL 将采用的确切宽度。然后您可以将下一个 UILabel 放置在 TITLE_LABEL 之后。
You can use NSString extension method, sizeWithFont to know the exact width that TITLE_LABEL will take. Then you can place the next UILabel after the TITLE_LABEL.
事实上,解决方案不仅只有一种。您可以阅读有关 CoreText 框架的信息。
这是 文档< /a>
它不像 UIWebView 那样容易使用,但性能要好得多。
以下是一些示例
Actually there is not only one solution. You can read about CoreText Framework.
Here is the documentation
It is not that easy to use like UIWebView but the performance is way better.
Here are few examples
解决方案只有一个:使用网络视图。
The solution is one only : use a web view.