如何以最简单的方式以编程方式更改乘数?

ios - 以编程方式更改中心 X/Y 对齐约束的乘数-LMLPHP

对于 Swift 2.0

最佳答案

因此,对于 Y,如果您将图像的顶部设置为与 superView 的顶部相等,常量为 0。然后输入这个代码:

@IBOutlet weak var topc: NSLayoutConstraint!


let heightOfSuperview = self.view.bounds.height
topc.constant = heightOfSuperview * 0.90 // this has the same effect as multiplier

这相当于 Center.y 乘数 = 0.9:1

关于ios - 以编程方式更改中心 X/Y 对齐约束的乘数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34912068/

10-13 01:28