我想覆盖UIStoryboardSegue子类的perform
方法。
因此,我必须使用UIView.animateWithDuration
为不同对象的约束和设置动画。
是否有可能在一个UIView.animateWithDuration
方法中进行约束和帧的动画制作?
你能发一个例子吗?
答案 0 :(得分:0)
使用layoutIfNeeded()为约束设置动画。
view.layoutIfNeeded()
constraintToAnimate.constant = 0
UIView.animate(withDuration: 1.0, animations: { () -> Void in
self.view.layoutIfNeeded()
}