标签: ios swift uibutton autolayout
我试图根据屏幕尺寸设置按钮的位置
storeButton.frame = CGRect(x: self.frame.width / 5, y: self.frame.height / 1.43, width: self.frame.width / 10, height: self.frame.height / 12)
但是,会发生什么呢?它是根据我运行它的当前大小而来的,当我切换到让我们说iPhone 5不是我想要的时候。
答案 0 :(得分:-1)
您可以使用约束。
如果您想以编程方式创建它们,我建议使用Apple Tutorial https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/ProgrammaticallyCreatingConstraints.html#//apple_ref/doc/uid/TP40010853-CH16-SW1