2
我想通過登錄請求可視化一個UIViewController。 登錄後(如果可以)我想顯示我的應用程序,它由具有各種選項卡的UITabBarController組成。 現在,我通常是在AppDelegate中使用此代碼來管理的UITabBarController:用於UITabBarController之前登錄的UIViewController
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?
嗨,謝謝你的回覆....我已經用這種方式解決了...在正確的登錄後,我將這段代碼稱爲: homeViewController * controller = [[homeViewController alloc] initWithNibName:@「homeViewController」bundle:nil ]。 UITabBarController * tabBarController = [[UITabBarController alloc] init]; tabBarController.viewControllers = [NSArray arrayWithObjects:controller,nil]; tabBarController.modalTransitionStyle = UIModalTransitionStyleCoverVertical; [self presentViewController:tabBarController animated:YES completion:nil]; – Blasco73 2013-02-16 13:43:48
太棒了,很高興我能幫上忙。請不要忘記勾選複選標記。 – Mundi 2013-02-17 15:32:53