pod 'SDWebImage/GIF'
FLAnimatedImage *image = [[FLAnimatedImage alloc]initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]]];
FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
imageView.animatedImage = image;
[self.view addSubview:imageView];
网友评论