我有两种状态UIView
:
我使用@IBaction
对button
:
@IBAction func tapped(sender: UIButton) {
flag = !flag
UIView.animateWithDuration(1.0) {
if self.flag {
NSLayoutConstraint.activateConstraints([self.myConstraint])
} else {
NSLayoutConstraint.deactivateConstraints([self.myConstraint])
}
self.view.layoutIfNeeded() //additional line
}
}
仅当我添加其他行时,动画才会:
但是当我删除该行时,我的UIView
会更新,但没有任何动画,它会立即发生。
为什么这条线会产生这样的差异?它是如何工作的?
答案 0 :(得分:3)
据我了解,更改约束并不会立即更新视图的布局。它会对更改进行排队,并且只会在下次系统更新布局时进行。
通过将layoutIfNeeded放在动画块中,它会强制在动画块期间应用视图更改。否则,它们会在动画设置完成后发生。