Imageview 用に 800 jpg の画像をロードするアプリを作成しています。さまざまなイベントが発生すると、さまざまな画像セットがアニメーション用にロードされます。最初のイベントが発生すると正常に動作しますが、2 番目のイベントでは 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;
これらの一連の画像でクラッシュが発生しています。