gpt4 book ai didi

iphone - 应用程序需要添加 rootViewController

转载 作者:行者123 更新时间:2023-11-29 13:24:02 27 4
gpt4 key购买 nike

当应用程序被激活时,我正在创建一个文件。根据该文件的存在,加载不同的 View 。

我正在尝试的是

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

// Add the view controller's view to the window and display.
if(condition true)
{
//[window addSubview:viewController.view];
[self.window setRootViewController:viewController];
[window makeKeyAndVisible];
return YES;
}else{
//[window addSubview:signViewController.view];
[self.window setRootViewController:secondViewController];
[window makeKeyAndVisible];
return YES;
}

// return YES;
}

我得到的错误是应用程序窗口应该在应用程序启动结束时有一个 Root View Controller

最佳答案

在使用 View Controller 之前,您应该首先allocinit

if(condition true)
{
//[window addSubview:viewController.view];
viewController = [[ViewController alloc] init];
[self.window setRootViewController:viewController];
[window makeKeyAndVisible];
return YES;
}else{
//[window addSubview:signViewController.view];
secondViewController = [[SecondViewController alloc] init];
[self.window setRootViewController:secondViewController];
[window makeKeyAndVisible];
return YES;
}

关于iphone - 应用程序需要添加 rootViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13625058/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com