我正在构建一个应用程序,该应用程序在加载应用程序时会进行大量设置。因此,我有一个加载视图,在设置发生时向用户显示一些信息......
MyLoadingViewController *loadingViewController = [[MyLoadingViewController alloc] init];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = loadingViewController;
[self.window makeKeyAndVisible];
.
.
//Setup code happens here
.
.
MyHomeViewController *homeViewController = [[MyHomeViewController alloc] init];
self.window.rootViewController = homeViewController;
设置代码完成后,我想转换到我的主屏幕。将 rootVewController 设置为新的主视图控制器是进行这种转换的正确方法吗?
非常感谢你的智慧!