YLGIFImage alternatives and similar libraries
Based on the "GIF" category.
Alternatively, view YLGIFImage alternatives based on common mentions on social networks and blogs.
-
AnimatedGIFImageSerialization
DISCONTINUED. Complete Animated GIF Support for iOS, with Functions, NSJSONSerialization-style Class, and (Optional) UIImage Swizzling -
JWAnimatedImage
An animated gif & apng engine for iOS in Swift. Have a great performance on memory and cpu usage. -
XAnimatedImage
XAnimatedImage is a performant animated GIF engine for iOS written in Swift based on FLAnimatedImage
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of YLGIFImage or a related project?
README
YLGIFImage
Asynchronized GIF image class and Image viewer supporting play/stop GIF images.
It just use very less memory. Following GIF usually will cost almost 600MB memory if it is fully decoded (800x600x389x4 Bytes), but using YLGIFImage, it just use about 30MB memory.
For this gif file, iOS Pinterest also will crash, but using YLGIFImage, it won't!
Swift support
I created another project to implement YLGIFImage using swift, it's called YLGIFImage-Swift.
Get Start
Using CocoaPods to get start, you can add following line to your Podfile:
pod 'YLGIFImage'
Using it
For using YLGIFImage, it's very simple:
YLImageView* imageView = [[YLImageView alloc] initWithFrame:CGRectMake(0, 160, 320, 240)];
[self.view addSubview:imageView];
imageView.image = [YLGIFImage imageNamed:@"joy.gif"];
Here is the demo looks like:
Thanks
Thanks to OLImageView! I referred a lot to this project, especially using CADisplayLink to play the animation.