I want to let a UIImageView
flash several times.
Currently I don\'t know how to do that.
-(void)arrowsAnimate{
[UIVi
Above blinking may not work when your app go background and foreground at time of blinking. Instead of these you can take a transparent image and your actual image and animate your ImageView
UIImageView *imageview=[UIImageView new];
imageview.animationDuration=1;
imageview.animationImages = your array of images;
[imageview startAnimating];