• 授权协议:MIT
  • 开发厂商:Flipboard
  • 软件语言:Objective-C
  • 更新日期:2016-01-26
FLAnimatedImage

FLAnimatedImage 是 iOS 的一个渲染 Gif 动画的引擎。

FLAnimatedImage iOS 的 Gif 渲染引擎 项目简介

FLAnimatedImage 是 iOS 的一个渲染 Gif 动画的引擎。功能:可同时播放多个 Gif 动画,速度媲美桌面浏览器可变帧延迟内存占用小可在第一次循环播放时消除或者阻止延迟动画的帧延迟解析性能媲美浏览器示例代码:FLAnimatedImage *image = [FLAnimatedImage animatedImageWithGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif"]]];
FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];
imageView.animatedImage = image;
imageView.frame = CGRectMake(0.0, 0.0, 100.0, 100.0);
[self.view addSubview:imageView];示例截图:

FLAnimatedImage iOS 的 Gif 渲染引擎 评论内容