gpt4 book ai didi

iphone - 如何获取CATransition/Animation的结束事件?

转载 作者:行者123 更新时间:2023-12-03 18:33:29 26 4
gpt4 key购买 nike

我的代码如下:

CATransition *transition = [CATransition animation];
transition.duration = duration

我希望得到CATransition/Animation的结束事件。可能吗?

最佳答案

CAAnimation(CATransition 是其子类)具有您可以使用的委托(delegate)方法 animationDidStop:finished:

设置委托(delegate)属性并实现方法:

CATransition *transition = [CATransition animation];
transition.duration = duration;
transition.delegate = self;
//other settings...
//call addAnimation...

...

- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag
{
//do what you need to do when animation ends...
}

关于iphone - 如何获取CATransition/Animation的结束事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4841120/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com