UIButton中的图像和标题

时间:2016-03-10 04:30:02

标签: swift uibutton

我正在配置我的tableview单元格,如下所述。它有效,但问题是在标题“关闭”之前有不必要的空间。因为我正在删除图像。如何删除不需要的空间,以便我的关闭'标题将集中在哪里?

if (condition) {
  self.myButton.setImage(UIImage(named: "activeImage"), forState: .Normal)
  self.myButton.setTitle("Active", forState: .Normal)
} 
else {
  self.myButton.setImage(nil, forState: .Normal)
  self.myButton.setTitle("Closed", forState: .Normal)
}

1 个答案:

答案 0 :(得分:0)

你可能在其他条件

中错过了这个
self.myButton.contentHorizontalAlignment = .Center
self.myButton.contentVerticalAlignment = .Center