我创建了一个UIImageView,将其添加到子视图中,并计划为其设置动画。我正在使用setAnimationDidStopSelector方法,并想知道我是否可以在动画停止后大约3秒左右调用一个函数。
以下是我正在使用的当前代码行:
[UIView setAnimationDidStopSelector:@selector(onAnimationComplete:finished:context:)];
[UIView setAnimationDelegate:self];
[UIView commitAnimations];
感谢。
答案 0 :(得分:3)
通过animationDidStopSelector
方法,您可以使用performSelector:withObject:afterDelay:调用另一种方法。