当我使用 iOS 10 时,某些按钮标签的文本变为...".我在 iOS9 中发现相同的字符串(例如:我是人)使用 48 宽度.在 iOS10 中它使用 48.96 宽度.如何解决?
When I use iOS 10 some button label's text become "...". I found the same string (e.x:我是人) in iOS9 uses 48 width. In iOS10 it uses 48.96 width. How to fix?
你必须使用你的按钮的titleLabel的adjustsFontSizeToFitWidth"属性
You have to use "adjustsFontSizeToFitWidth" property of titleLabel of your button
例子:
myButton.titleLabel.adjustsFontSizeToFitWidth = YES;
此行会根据按钮的宽度自动调整 myButton 文本的字体大小.
This line will automatically adjust font size for the text of myButton based on the width of the button.
使用此链接:将 UIButton 字体大小调整为宽度
另一种解决方案是通过调整约束来增加按钮的宽度.
Another solution is to increase the width of the button, by adjusting constraints.
这篇关于我的按钮的 titleLabel 变成了“..."在 iOS10 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!