此处使用文件 FLAnimatedImage FLAnimatedImageView 中的方法傻瓜式加载动态图
NSString *gifpath = [[NSBundle mainBundle] pathForResource:@"bear" ofType:@"gif"];
FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfFile:gifpath]]; 从本地加载
FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@""]]]; 通过网址加载
FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];
imageView.animatedImage = image;
imageView.frame = CGRectMake(50.0, 400, 250.0, 200.0);