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 上
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01