我的按钮的 titleLabel 变成了“..."在 iOS10 上 [英] My button's titleLabel become "..." on iOS10

查看:38
本文介绍了我的按钮的 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 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆