我想为对象设置动画,所以我声明了一个约束并将其添加到视图中。然后,我在constant
动画中更新约束的UIView
属性。为什么这段代码没有移动对象?
UIView.animateWithDuration(1, animations: {
myConstraint.constant = 0
self.view.updateConstraints(myConstraint)
})
答案 0 :(得分:84)
为了声明动画,您无法重新定义约束并调用updateConstraints
。您应该更改约束的constant
并遵循以下格式:
self.view.layoutIfNeeded()
UIView.animateWithDuration(1, animations: {
self.sampleConstraint.constant = 20
self.view.layoutIfNeeded()
})