I have an array of images loaded into a UIImageView that I am animating through one cycle. After the images have been displayed, I would like a @selector
to be
You can create a timer to fire after the duration of your animation. The callback could process your logic you want to execute after the animation finishes. In your callback be sure check the status of the animation [UIImageView isAnimating]
just in case you want more time to let the animation finish.