My button#39;s titleLabel become quot;...quot; on iOS10(我的按钮的 titleLabel 变成了“...在 iOS10 上)
问题描述
当我使用 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 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我的按钮的 titleLabel 变成了“..."在 iOS10 上
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- UITextView 内容插图 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- GPS状态的广播接收器? 2022-01-01