答案 0 :(得分:40)
然后在代码中设置约束的常量值:
labelWidthConstraint.constant = newValue
如果你想要它的动画,你可以做这样的事情:
labelWidthConstraint.constant = newValue
UIView.animate(withDuration: 0.3, animations: {
view.layoutIfNeeded()
}
self.labelWidthConstraint.constant = newValue;
[UIView animateWithDuration:0.3 animations:^{
[self.view layoutIfNeeded];
}];