Use FLAnimatedImage library
#import "FLAnimatedImage.h"NSURL *url = [[NSBundle mainBundle] URLForResource:@"animated-f" withExtension:@"gif"]; NSData *data = [NSData dataWithContentsOfURL:url];FLAnimatedImage *image = [FLAnimatedImage animatedImageWithGIFData:data];FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];imageView.animatedImage = image;imageView.frame = CGRectMake(0.0, 0.0, 100.0, 100.0);[self.view addSubview:imageView];