加载本地gif图片

#import "FLAnimatedImageView.h"
#import "FLAnimatedImage.h"

FLAnimatedImageView *imgView = [FLAnimatedImageView new];
[view addSubview:imgView];
NSString* filePath = [[NSBundle bundleWithPath:[[NSBundle mainBundle] bundlePath]]pathForResource:@"loading" ofType:@"gif"];
NSData  *imageData = [NSData dataWithContentsOfFile:filePath];
imgView.backgroundColor = [UIColor clearColor];
 imgView.animatedImage = [FLAnimatedImage animatedImageWithGIFData:imageData];

你可能感兴趣的:(加载本地gif图片)