我在 iPhone 5 上显示背景图像时遇到问题。我在项目中添加了 3 张图像。第一个名为 main_background.png ,第二个名为 [email protected] ,第三个名为 [email protected] 。在 init 方法中,我将图像分配给背景,如下所示:
- (id)initWithNibNameNSString *)nibNameOrNil bundleNSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed"main_background"]];
}
return self;
}
我在 iPhone 5 上运行该应用程序,它选择了 @2x 图像。它开始在 y 轴上重复它。我做错了什么以及如何解决这个问题?
Best Answer-推荐答案 strong>
您需要自己处理。
使用后缀 -586h@2x 仅适用于启动图像。
关于iphone - 设备选择了错误的视网膜图像,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/12987101/
|