以编程方式操纵前导约束Swift 4

时间:2018-04-06 13:45:52

标签: ios xcode autolayout swift4

如何在Swift 4中以编程方式查找UIView的主要约束以及如何以编程方式操作前导约束?

1 个答案:

答案 0 :(得分:0)

你可以尝试

 for con in otherView.constraints {
   if(con.firstAttribure == NSLayoutAttribute.leading) {
       /// here con is a leading constraint
    }
 }

或更好地使用约束标识符来快速找到它