Gif在iOS设备上崩溃

时间:2015-07-31 06:32:40

标签: ios objective-c image gif

Gif在模拟器上运行顺畅,但由于内存而在设备中崩溃。怎么处理这个。我已经google了很多,但没有找到任何解决方案。

以下是我用来加载Gif的代码

NSURL *url = [[NSBundle mainBundle] URLForResource:[utility getString] withExtension:@"gif"]; 
self.img.image = [UIImage animatedImageWithAnimatedGIFURL:url];

先谢谢

2 个答案:

答案 0 :(得分:1)

据我所知,由于内存压力和内存使用量的大幅增加,它崩溃了。

检查这些链接,它可以帮助您link1link2!!link3!!

答案 1 :(得分:0)

使用Github的FLAnimatedImage库: - 使用https://github.com/Flipboard/FLAnimatedImage它易于使用且对内存友好。

导入“FLAnimatedImage.h”

导入“FLAnimatedImageView.h”

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); //As your Wish you can set frame
[self.view addSubview:imageView]; 

这是一个经过良好测试的组件。