为什么layoutIfNeeded()允许在更新约束时执行动画?

时间:2015-07-11 21:05:24

标签: swift layoutsubviews animatewithduration

我有两种状态UIView

enter image description here enter image description here

我使用@IBactionbutton

进行动画制作
@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会更新,但没有任何动画,它会立即发生。

为什么这条线会产生这样的差异?它是如何工作的?

1 个答案:

答案 0 :(得分:3)

据我了解,更改约束并不会立即更新视图的布局。它会对更改进行排队,并且只会在下次系统更新布局时进行。

通过将layoutIfNeeded放在动画块中,它会强制在动画块期间应用视图更改。否则,它们会在动画设置完成后发生。