如何在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)
答案 0 :(得分:3)
在主捆绑中,启动图像具有其他名称表示
您可以使用以下方法加载它们:
UIImage *anImage = [UIImage imageNamed:@"LaunchImage-800-667h"];