Package apple.quartzcore.protocol
Interface CAAnimationDelegate
-
public interface CAAnimationDelegateDelegate methods for CAAnimation.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidanimationDidStart(CAAnimation anim)Called when the animation begins its active duration.default voidanimationDidStopFinished(CAAnimation anim, boolean flag)Called when the animation either completes its active duration or is removed from the object it is attached to (i.e. the layer).
-
-
-
Method Detail
-
animationDidStart
default void animationDidStart(CAAnimation anim)
Called when the animation begins its active duration.
-
animationDidStopFinished
default void animationDidStopFinished(CAAnimation anim, boolean flag)
Called when the animation either completes its active duration or is removed from the object it is attached to (i.e. the layer). 'flag' is true if the animation reached the end of its active duration without being removed.
-
-