我有一个 UIButtonRoundedRectType 类型的 UIButton,我想将它水平和垂直放在屏幕中间。
我已经尝试通过硬编码数字来做到这一点,但是当在 iPhone 与 iphone(视网膜)上运行时,这会回头看。我想通过计算容器的宽度以编程方式将按钮保持在中心。
所以,我试过这个,但它不起作用。
container = view.frame.size
button = UIButton.buttonWithType(UIButtonTypeRoundedRect)
button.frame = [[container.width/2-button.frame.size.width/2,150], [280,50]]