次のコードを使用して多くの画像を配列にロードしていますが、それをより効率的に行う方法を知りたいです。たとえば、100枚の画像を効率的に配列にロードするにはどうすればよいでしょうか。
hopAnimation=[[NSArray alloc] initWithObjects:
[UIImage imageNamed:@"frame-1.png"],
[UIImage imageNamed:@"frame-2.png"],
[UIImage imageNamed:@"frame-3.png"],
[UIImage imageNamed:@"frame-4.png"],
[UIImage imageNamed:@"frame-5.png"],
[UIImage imageNamed:@"frame-6.png"],
[UIImage imageNamed:@"frame-7.png"],
[UIImage imageNamed:@"frame-8.png"],
[UIImage imageNamed:@"frame-9.png"],
[UIImage imageNamed:@"frame-10.png"],
.
.
.
[UIImage imageNamed:@"frame-100.png"],
nil
];
これを効率的に行うためにforループを使用する方法はありますか?