NSLayoutConstraint-Equations是一种Swift库,其作用是可编程地创建自动布局约束,类似数学方程式和不等式。
使用:
view.addConstraint(Top(label) == 1 * Top(button) + 20)view.addConstraints(Top(label) == Top(button) |+ CenterX(label) == CenterX(self.view) |+ CenterY(label) == CenterY(self.view) |+ (Bottom(button) == Bottom(self.view) + 600)|10)
评论