我正在使用以下代码在应用程序主屏幕中为我的公司徽标设置动画:
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 图像?