按钮不显示iPhone SE

时间:2017-11-23 11:23:03

标签: ios swift uibutton autolayout

buttons中有3 view。所有按钮都会显示button title number of lines。即如果 1按钮显示2行中的文本,则其他两行将显示相同的文本。在使用iPhone SE's时,此问题主要影响我。它显示如下,

Button design

这是“属性检查器”的外观

enter image description here

字体大小是 -

enter image description here

1 个答案:

答案 0 :(得分:0)

这样做,

  1. IBOutletbutton建立controller连接。
  2. Ex : think your button outlet name is - >的 testButton
  3. 然后在viewdidload中:

           testButton.setTitle("Delete\n Tender", for: .normal)
           testButton.titleLabel?.numberOfLines = 2
    
  4. 希望这会对你有所帮助。