I have an UIImageView
called imgView, where i have an array of images, like,
imageArray objects: [UIImage imageNamed:@"test4.png"],
[UIImage imageNamed:@"test5.png"],
[UIImage imageNamed:@"test6.png"],
[UIImage imageNamed:@"test7.png"],
nil];
then i have added the array images in imgView animation, like
imgView.animationImages = imageArray;
imgView.animationRepeatCount = 0;
imgView.animationDuration = 2.0f;
[imgView startAnimating];
Here every thing works fine. I have to delay 5sec after one cycle of animation finishes. How can i do this, i have used
[self performSelector:@select...
but not working, please give me any idea.