次のコードを使用して、アプリのメイン画面で会社のロゴをアニメーション化します。
NSArray *array = [[NSArray alloc] initWithObjects:
[UIImage imageNamed:@"logo_001.png"],
[UIImage imageNamed:@"logo_002.png"],
[UIImage imageNamed:@"logo_003.png"],
nil];
self.imageViewLogo.image = [array lastObject];
self.imageViewLogo.animationImages = array;
self.imageViewLogo.animationDuration = 1;
self.imageViewLogo.animationRepeatCount = 1;
[self.imageViewLogo startAnimating];
この場合、網膜@ 2x画像をどのように処理する必要がありますか?