AppDelegate动态加载StoryBoard
Posted blue-fly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AppDelegate动态加载StoryBoard相关的知识,希望对你有一定的参考价值。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]]; self.window.rootViewController=[storyboard instantiateInitialViewController]; [self.window makeKeyAndVisible]; return YES; }
以上是关于AppDelegate动态加载StoryBoard的主要内容,如果未能解决你的问题,请参考以下文章
需要从 appdelegate 加载 UIViewController 并在 Storyboard App 中加载时隐藏 UITabBarController
在 AppDelegate 中引用从 StoryBoard 创建的 TabbarController?
MacOS-MacAPP通过纯代码不依赖storyboard/xib加载UI主界面
从 AppDelegate 导航 iOS Storyboard ViewController