我可以在Storyboard上设置偏移位置吗?

时间:2017-03-31 03:03:06

标签: swift uibutton autolayout storyboard

我可以在Storyboard上编写如下代码吗?

let button = UIButton()
button.titleLabel.center = CGPoint(x:button.titleLabel.center.x, y:button.titleLabel.center.y + 30)

1 个答案:

答案 0 :(得分:1)

查看UIEdgeInsets和UIButton属性titleEdgeInsets

button.titleLabelInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 30)

根据您的确切需求和代码,这可以满足您的需求。 (仅供参考 - 还有一个imageEdgeInsets。)