前端之家收集整理的这篇文章主要介绍了
ios – 以编程方式设置UIButton的中心 – SWIFT,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在UIView里面有一个UIButton,我的UIButton有我在故事板中设置的约束.现在,我想将UIButton的中心设置在UIView的中心.我将如何以编程方式执行此操作?
试试.center
属性就好
myButton.center = self.view.center
如果需要,您还可以指定x和y.
myButton.center.x = self.view.center.x // for horizontal
myButton.center.y = self.view.center.y // for vertical
原文链接:https://www.f2er.com/iOS/335275.html