in my iphone App i want add Animation which displays images one after another for that
  imgView.animationImages = [NSArray arrayWithObjects: 
                           [UIImage imageNamed:@"image1.png"],
                           [UIImage imageNamed:@"image3.png"],
                           [UIImage imageNamed:@"image5.png"],
                            "
                            "
                           [UIImage imageNamed:@"image150.png"],nil];
imgView.animationDuration = 13.00;
imgView.animationRepeatCount = 1.0;  
[imgView startAnimating]; 
how to manage images to for for smooth Animation and app could run without crash ?
i have already compressed my image size.