是否有可能取消一个UIView动画,而它正在进行中?或者我必须降到CA级别?
例如,我做过这样的事情(可能设置了一个结束动画动作):
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:duration];
[UIView setAnimationCurve: UIViewAnimationCurveLinear];
// other animation properties
// set view properties
[UIView commitAnimations];
但是在动画完成之前,我得到动画结束事件,我想取消它(缩短它)。这可能吗?在谷歌上搜索一下,会发现一些人问了同样的问题,但没有答案——还有一两个人猜测这是不可能的。
如果你正在寻找灵活的动画,可以根据你的需要开始和停止,使用UIViewPropertyAnimator。
示例代码
let sampleView = UIView()
lazy var animator: UIViewPropertyAnimator = {
let animator = UIViewPropertyAnimator(duration: 1.2, curve: .easeOut)
animator.isInterruptible = true
return animator
}()
// add and your animatable property
animator.addAnimations {
// what you need to animate add here
sampleView.alpha = 0
}
// start animation
animator.startAnimation(afterDelay: 0.5)
如果你需要在动画中间停下来。它将在当前状态下停止动画。
// stop animation
if animator.isRunning {
animator.stopAnimation(true)
}