小编典典

在Swift中以编程方式更新约束的常量属性?

swift

我想为对象设置动画,所以我声明一个约束并将其添加到视图中。然后,我constantUIView动画中更新约束的属性。为什么这段代码不移动对象?

UIView.animateWithDuration(1, animations: {
     myConstraint.constant = 0   
     self.view.updateConstraints(myConstraint)
})

阅读 284

收藏
2020-07-07

共1个答案

小编典典

为了声明动画,您不能重新定义约束并调用updateConstraints。您应该更改constant约束的,并遵循以下格式:

self.view.layoutIfNeeded()
UIView.animate(withDuration: 1) {
    self.sampleConstraint.constant = 20
    self.view.layoutIfNeeded()
}
2020-07-07