iOS启动图不使用LaunchScreen.storyboard

新开一个工程后,默认会生成几个文件。
1.appDelegate
2.ViewController
3.Main.storyboard
4.launchScreen.storyBoard

1.删除ViewController
删除viewController的话,注意添加新的根控制器

2.删除Main.storyboard
注意删除info.plist中的"Main storyboard file base name" 属性(属性值为:Main)

3.删除launchScreen.storyBoard
直接删除launchScreen.storyBoard的话,如果启动项目会在app上方和下方出现一根黑条,项目内容填不满屏幕. 如果没必要,不用删除launchScreen.storyBoard。如果删除了的话,需要在target中的general下,找到"launch images source",点击"Use Asset Catalog...",默认就会在Assets.xcassets下生成启动图文件夹,用来存放启动图。

4.如果不显示的话,注意将Launch screen interface file base name"属性 设置为空!.
运行成功!

你可能感兴趣的:(iOS启动图不使用LaunchScreen.storyboard)