我设置一个只有一个应用程序委托类的空应用程序,然后分类一个视图控制器类来创建一个xib来布局应用程序并进行连接.
但是当我尝试在iOS Simulator上运行应用程序时,我发现错误:CoinToss [6212:f803]应用程序在应用程序启动结束时应该有根视图控制器
终止响应SpringBoard的终止.
程序以退出代码结束:0
为了为应用程序创建根视图控制器,我需要做些什么?
谢谢.
解决方法
在AppDelegate.m
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds]; UIViewController *viewController = // determine the initial view controller here and instantiate it with [storyboard instantiateViewControllerWithIdentifier:]; self.window.rootViewController = viewController;//making a view to root view [self.window makeKeyAndVisible]; return YES; }