Gif在模拟器上运行顺畅,但由于内存而在设备中崩溃。怎么处理这个。我已经google了很多,但没有找到任何解决方案。
以下是我用来加载Gif的代码
NSURL *url = [[NSBundle mainBundle] URLForResource:[utility getString] withExtension:@"gif"];
self.img.image = [UIImage animatedImageWithAnimatedGIFURL:url];
先谢谢
答案 0 :(得分:1)
答案 1 :(得分:0)
使用Github的FLAnimatedImage库: - 使用https://github.com/Flipboard/FLAnimatedImage它易于使用且对内存友好。
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];
这是一个经过良好测试的组件。