我正在创建一个应用程序,其中我正在为 Imageview 加载 800 个 jpg 图像。在发生不同的事件时,将为动画加载不同的图像集。在第一个事件发生时它工作正常,但在第二个事件时它在 iPhone 上崩溃。有什么帮助吗?我的部分代码如下
for (int aniCount = 1; aniCount < 480; aniCount++){
UIImage *frameImage = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource: [NSString stringWithFormat: @"ani_soft_whimper_%i", aniCount] ofType: @"jpg"]];
[_arr_ImagesSoftWhimper addObject:frameImage];
}
imageView.animationImages = _arr_ImagesSoftWhimper;
我为这些图像集崩溃了。