FlatButton高度为titleLabel

时间:2016-05-16 15:13:18

标签: cosmicmind

我试图将FlatButton的高度设置为FlatButton内标签的高度。

var textButton: FlatButton = FlatButton()
textButton.contentEdgeInsets = UIEdgeInsetsZero

但这只能消除左右两侧的间距。顶部和底部仍有间距。如何使按钮不比文本大?

1 个答案:

答案 0 :(得分:0)

可能是ios中的一个错误,但这是一种解决方法:

var textButton: FlatButton = FlatButton()
textButton.contentEdgeInsets = UIEdgeInsets(top: 1, left: 0, bottom: 1, right: 0)

这实际上使按钮比我做的更小

UIEdgeInsets(top: 0, left: 0, bottom: , right: 0)