在应用程序内使用启动图像

时间:2014-12-25 21:39:11

标签: ios uiimage

如何在images.xcassets中使用启动图像在应用程序内部工作?

试试这些没有运气:

self.view.backgroundColor = UIColor(patternImage: UIImage(named: "LaunchImage")!)
self.view.backgroundColor = UIColor(patternImage: UIImage(named: "LaunchImage.png")!)
self.view.backgroundColor = UIColor(patternImage: UIImage(named: "640x960.png")!)

fatal error: unexpectedly found nil while unwrapping an Optional value
(lldb) 

enter image description here

1 个答案:

答案 0 :(得分:3)

在主捆绑中,启动图像具有其他名称表示

Image assets

您可以使用以下方法加载它们:

UIImage *anImage = [UIImage imageNamed:@"LaunchImage-800-667h"];