Quantcast
Viewing all articles
Browse latest Browse all 37

Answer by Sargis for Objective C - how to play animated gif image

Use FLAnimatedImage library

#import "FLAnimatedImage.h"NSURL *url = [[NSBundle mainBundle] URLForResource:@"animated-f" withExtension:@"gif"];    NSData *data = [NSData dataWithContentsOfURL:url];FLAnimatedImage *image = [FLAnimatedImage animatedImageWithGIFData:data];FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];imageView.animatedImage = image;imageView.frame = CGRectMake(0.0, 0.0, 100.0, 100.0);[self.view addSubview:imageView];

Viewing all articles
Browse latest Browse all 37

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>