应用程序打开到空白黑屏
Posted
技术标签:
【中文标题】应用程序打开到空白黑屏【英文标题】:App Opening to Blank Black Screen 【发布时间】:2012-12-12 09:02:42 【问题描述】:我正在制作一个将导航控制器嵌入标签栏控制器的应用程序。现在,当我打开应用程序时,我得到的只是一个空白的黑屏。
这是我的代码
PDCFirstViewController *viewController1 = [[PDCFirstViewController alloc]
initWithNibName:@"PDCFirstViewController" bundle:nil];
PDCSecondViewController *viewController2 = [[PDCSecondViewController alloc]
initWithNibName:@"PDCSecondViewController" bundle:nil];
ViewController *viewController3 = [[ViewController alloc]
initWithNibName:@"ViewController" bundle:nil];
UINavigationController *navigationcontroller = [[UINavigationController alloc]
initWithRootViewController:viewController3];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray
arrayWithObjects:viewController1,viewController2,navigationcontroller, nil];
[self.window makeKeyAndVisible];
我需要添加一些东西或做一些不同的事情来使应用程序显示吗?任何帮助都会很棒!谢谢!
【问题讨论】:
self.window.rootViewController = self.tabBarController; 您应该在启动时收到警告,提示解决方案。 您没有将 tabBarController 设置为窗口的根视图控制器。您必须在调试控制台上收到警告,告知窗口应该设置了根视图控制器。为什么要对我们隐藏您在调试控制台上获得的信息?这根本没有帮助。 【参考方案1】:你不见了rootviewcontroller
添加这个
self.window.rootViewController = self.tabBarController;
希望对你有帮助..
【讨论】:
【参考方案2】:self.window.rootViewController = self.tabBarController;
【讨论】:
【参考方案3】:self.window.rootViewController = self.tabBarController;
应该这样做
【讨论】:
需要为self.tabBarController,上面代码中没有ivar。以上是关于应用程序打开到空白黑屏的主要内容,如果未能解决你的问题,请参考以下文章