我想用登录请求可视化一个 UIViewController。登录后(如果可以),我想展示我的应用程序,它由带有各种选项卡的 UITabBarController 组成。现在我通常在 AppDelegate 中使用这段代码来管理 UITabBarController:
UIViewController *viewController1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UIViewController *viewController2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = @[viewController1, viewController2];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
这将显示我的应用程序。在此之前,我如何显示一个用于登录请求的 UIViewController?