自动调整UILabel字体大小
我有一个长度
100 的标签。这是我可以拥有的最大标签尺寸。
当我显示 10 个字符的文本时,它适合它。但有时我必须显示超过 10 个字符。那么有没有办法缩小 font
大小并使其适合长度为 100 的 UILabel
?
UILabel *la = [UILabel alloc]initWithFrame(5,10,100,14)];
I have a label of length
100. This is the maximum label size i can have.
When i display a text of 10 characters it fits to it. But at times i will have to display more than 10 characters
. So is there a way to shrink the the font
size and make it to fit in my UILabel
of length 100 ?
UILabel *la = [UILabel alloc]initWithFrame(5,10,100,14)];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 UILabel 的 adjustsFontSizeToFitWidth 属性 [参考]。
来自参考:
Just use the adjustsFontSizeToFitWidth property of UILabel [Reference].
From the reference: