How to pause and resume gif ? thanks
destinyxxl opened this issue · 2 comments
// setup
NSString *strImageUrlGif = urlPath;
NSURL *ImageUrlGif = [NSURL URLWithString:strImageUrlGif];
FLAnimatedImage *imageGif = [FLAnimatedImage animatedImageWithGIFData:[NSData dataWithContentsOfURL:ImageUrlGif]];
[imgGif setAnimatedImage:imageGif];
[imgGif stopAnimating];
//running gif once
[imgGif startAnimating];
[imgGif setLoopCompletionBlock:^(NSUInteger loopCountRemaining) {
[imgGif stopAnimating];
[imgGif setLoopCompletionBlock:nil];
}];
// setup
NSString *strImageUrlGif = urlPath;
NSURL *ImageUrlGif = [NSURL URLWithString:strImageUrlGif];
FLAnimatedImage *imageGif = [FLAnimatedImage animatedImageWithGIFData:[NSData dataWithContentsOfURL:ImageUrlGif]];[imgGif setAnimatedImage:imageGif]; [imgGif stopAnimating];
//running gif once
[imgGif startAnimating];
[imgGif setLoopCompletionBlock:^(NSUInteger loopCountRemaining) {
[imgGif stopAnimating];
[imgGif setLoopCompletionBlock:nil];
}];
How to disable animating every time when push another view and back