同时为约束和框架设置动画

时间:2017-06-10 12:50:11

标签: ios uiview constraints segue

我想覆盖UIStoryboardSegue子类的perform方法。

因此,我必须使用UIView.animateWithDuration为不同对象的约束设置动画。

是否有可能在一个UIView.animateWithDuration方法中进行约束和帧的动画制作? 你能发一个例子吗?

1 个答案:

答案 0 :(得分:0)

使用layoutIfNeeded()为约束设置动画。

view.layoutIfNeeded()

constraintToAnimate.constant = 0
UIView.animate(withDuration: 1.0, animations: { () -> Void in
    self.view.layoutIfNeeded()
}