我的按钮的 titleLabel 变成了“..."在 iOS10 上

My button#39;s titleLabel become quot;...quot; on iOS10(我的按钮的 titleLabel 变成了“...在 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 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)