美文网首页
加载本地gif图片

加载本地gif图片

作者: 辣椒切成丝 | 来源:发表于2019-07-25 16:19 被阅读0次
#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图片

      本文链接:https://www.haomeiwen.com/subject/swwhrctx.html