I am trying to create an animation using a UIImageView with an array if images. It works great, except that I need a different delay between some of the frames. In an animat
It may seem hacky, but:
From UIImageView documentation:
animationImages
An array of
UIImageobjects to use for an animation.@property(nonatomic, copy) NSArray *animationImagesDiscussion
The array must contain
UIImageobjects. You may use the same image object more than once in the array. Setting this property to a value other thannilhides the image represented by theimageproperty. The value of this property isnilby default.
So you need to add your UIImage several times to the array for a delay.