我想从UIView
得到CAAnimation
对象。我已经实现了以下CAAnimationDelegate
方法
public func animationDidStop(_ animation:CAAnimation, finished:Bool) {
// Need respective View from "animation:CAAnimation"
}
该课程将使用不同的视图执行多个动画。所以我需要找出在这个委托方法中完成哪个View的动画。如果有可能从这个动画中获取视图,请指导我。
亚光建议这里是你可以找到完成哪个动画的方式。
首先,您需要在创建动画时为动画添加不同的键值,如下所示:
let theAnimation = CABasicAnimation(keyPath: "opacity")
theAnimation.setValue("animation1", forKey: "id")
theAnimation.delegate = self
let theAnimation2 = CABasicAnimation(keyPath: "opacity")
theAnimation2.setValue("animation2", forKey: "id")
theAnimation2.delegate = self
在animationDidStop
方法中,您可以识别动画:
func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
if let val = anim.value(forKey: "id") as? String {
switch val {
case "animation1":
print("animation1")
case "animation2":
print("animation2")
default:
break
}
}
}
我已经采取了THIS答案并将目标c代码转换为快速与switch
案件。