加载本地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
网友评论