出于某种原因,当我从资产目录中以编程方式引用时,我的4英寸启动图像未被选中?它使用3.5的默认启动图像。任何线索?
UIColor *image = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"LaunchImage"]];
self.view.backgroundColor = image;
答案 0 :(得分:1)
我没有使用启动图像资产目录,而是使用相同的图像创建了另一个图像,并将其用作背景图像参考。
UIColor *image = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Background"]];
self.view.backgroundColor = image;