此处使用文件 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:@"http://imgsrc.baidu.com/forum/w%3D580%3B/sign=5e9f5015d209b3deebbfe460fc846d81/c2cec3fdfc039245de5916728494a4c27c1e25da.gif"]]]; 通过网址加载
FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];
imageView.animatedImage = image;
imageView.frame = CGRectMake(50.0, 400, 250.0, 200.0);