从 CAAnimation 获取 UIVIew
Get UIVIew from CAAnimation
我正在尝试从 CAAnimation
获取 UIView
对象。我已经实现了以下 CAAnimationDelegate
方法
public func animationDidStop(_ animation:CAAnimation, finished:Bool) {
// Need respective View from "animation:CAAnimation"
}
此 class 将执行多个具有不同视图的动画。所以我需要在这个委托方法中找出哪个View的动画完成了。如果有任何可能从这个动画中获得视图,请指导我。
正如 matt 在此处建议的那样,您可以通过这种方式找到已完成的动画。
首先,您需要在创建动画时为动画添加不同的键值,如下所示:
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 答案并将 Objective c 代码转换为 swift switch
大小写。
我只是在 UIView
中使用标签 属性
animatedView.tag = 10
func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
for myView in view.subviews {
if myView.tag == 10 {
myView.removeFromSuperview()
return
}
}
}
我正在尝试从 CAAnimation
获取 UIView
对象。我已经实现了以下 CAAnimationDelegate
方法
public func animationDidStop(_ animation:CAAnimation, finished:Bool) {
// Need respective View from "animation:CAAnimation"
}
此 class 将执行多个具有不同视图的动画。所以我需要在这个委托方法中找出哪个View的动画完成了。如果有任何可能从这个动画中获得视图,请指导我。
正如 matt 在此处建议的那样,您可以通过这种方式找到已完成的动画。
首先,您需要在创建动画时为动画添加不同的键值,如下所示:
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 答案并将 Objective c 代码转换为 swift switch
大小写。
我只是在 UIView
中使用标签 属性animatedView.tag = 10
func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
for myView in view.subviews {
if myView.tag == 10 {
myView.removeFromSuperview()
return
}
}
}