In my Application, I have a NSMutableArray
with UIImage
in it.
I would like to display the first UIImage
in the array for three seconds, and then to
display the second image.
All of this should happen when I press a UIButton
.
Below is my code:
[testImageView setImage:[arr objectAtIndex:0]] ;
sleep(3) ;
[testImageView setImage:[arr objectAtIndex:1]] ;
testImageView is a UIImageView
object on my screen.
When I'm running this code, my button remain pressed for three seconds and only the second image is displayed.
What should I do?