从CAAnimation获取UIVIew

问题描述 投票:1回答:1

我想从UIView得到CAAnimation对象。我已经实现了以下CAAnimationDelegate方法

public func animationDidStop(_ animation:CAAnimation, finished:Bool) {
     // Need respective View from "animation:CAAnimation"
}

该课程将使用不同的视图执行多个动画。所以我需要找出在这个委托方法中完成哪个View的动画。如果有可能从这个动画中获取视图,请指导我。

ios swift uikit caanimation
1个回答
1
投票

亚光建议这里是你可以找到完成哪个动画的方式。

首先,您需要在创建动画时为动画添加不同的键值,如下所示:

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案件。

© www.soinside.com 2019 - 2024. All rights reserved.