如何使UIButton Text动态化?

时间:2015-12-18 06:03:40

标签: ios swift uibutton storyboard

所以我在堆栈视图中有一个UIButton。到目前为止,按钮是动态的,因此缩小了尺寸。问题是根据屏幕尺寸,里面的文字不会变小。我正在使用故事板和Swift。

The way the button looks on iPhone5

1 个答案:

答案 0 :(得分:2)

转到按钮的标题标签,setAdjustsFontSizeToFitWidth转到YES

这是objC方式

[[button titleLabel] setAdjustsFontSizeToFitWidth:YES];