iOS 向应用程序添加启动屏幕时需要导航控制器吗?
iOS navigation controller required when adding launch screen to app?
我的应用在 Main.storyboard 上运行良好,现在我想添加 LaunchScreen.storyboard。简单的问题:是否需要导航控制器来执行此操作?我会根据答案进行研究。谢谢!
否 无需为添加 LaunchScreen.storyboard 添加 UINavigationController
。 UINavigationController 仅用于导航到一个 UIViewController 到另一个 UIViewController。
我的应用在 Main.storyboard 上运行良好,现在我想添加 LaunchScreen.storyboard。简单的问题:是否需要导航控制器来执行此操作?我会根据答案进行研究。谢谢!
否 无需为添加 LaunchScreen.storyboard 添加 UINavigationController
。 UINavigationController 仅用于导航到一个 UIViewController 到另一个 UIViewController。