FlatButton 高度到 titleLabel

FlatButton height to titleLabel

我正在尝试将 FlatButton 的高度设置为 FlatButton 内标签的高度。

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

但这只是去掉了左右两边的间距。顶部和底部仍然有间距。如何让按钮不大于文本?

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

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

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

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