是否可以延迟setAnimationDidStopSelector?

时间:2010-02-17 03:34:07

标签: iphone objective-c

我创建了一个UIImageView,将其添加到子视图中,并计划为其设置动画。我正在使用setAnimationDidStopSelector方法,并想知道我是否可以在动画停止后大约3秒左右调用一个函数。

以下是我正在使用的当前代码行:

    [UIView setAnimationDidStopSelector:@selector(onAnimationComplete:finished:context:)];
[UIView setAnimationDelegate:self];
[UIView commitAnimations];

感谢。

1 个答案:

答案 0 :(得分:3)

通过animationDidStopSelector方法,您可以使用performSelector:withObject:afterDelay:调用另一种方法。