来自启动映像的所有设备屏幕的iOS背景图像

时间:2013-10-29 01:13:51

标签: ios iphone xcode

如何动态使用iOS启动图像作为代码中当前设备屏幕的背景图像?我讨厌做一堆if / else语句来做到这一点。这对iPad来说很小。

self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Default.png"]];

1 个答案:

答案 0 :(得分:0)

我通过使用资产目录并使用名为background的新资产目录中的启动图像来解决这个问题。

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