3. A little hint here. Select all frames with cmd+A and make the first one unselected. Otherwise you can`t copy frames separately. Than drag selected frames to Resources directory and final task by dragging the first one.
// my GIF consists of 30 frames
int numberOfFames = 30;
NSMutableArray *imagesArray = [NSMutableArray arrayWithCapacity:numberOfFames];
for (int i=1; numberOfFrames > i; ++i)
{
[imagesArray addObject:[UIImage imageNamed:
[NSString stringWithFormat:@"gtp-%d (dragged).tiff", i]]];
}
UIImageView *anImageView = [[[UIImageView alloc] initWithFrame:CGRectMake(40,100,250,188)] autorelease];
[self.view addSubview:anImageView];
anImageView.animationImages = imagesArray;
anImageView.animationDuration = 1;
[anImageView startAnimating];



