资产目录启动图像不用于4英寸模拟器

时间:2013-10-29 06:25:32

标签: ios iphone xcode image asset-catalog

出于某种原因,当我从资产目录中以编程方式引用时,我的4英寸启动图像未被选中?它使用3.5的默认启动图像。任何线索?

UIColor *image = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"LaunchImage"]];
self.view.backgroundColor = image;

1 个答案:

答案 0 :(得分:1)

我没有使用启动图像资产目录,而是使用相同的图像创建了另一个图像,并将其用作背景图像参考。

UIColor *image = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Background"]];
self.view.backgroundColor = image;