如何动态使用iOS启动图像作为代码中当前设备屏幕的背景图像?我讨厌做一堆if / else语句来做到这一点。这对iPad来说很小。
self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Default.png"]];
答案 0 :(得分:0)
我通过使用资产目录并使用名为background的新资产目录中的启动图像来解决这个问题。
UIColor *image = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Background"]];
self.view.backgroundColor = image;