How to change RootViewController (in AppDelegate) from within CustomViewController?

LIAL picture LIAL · Jul 13, 2011 · Viewed 11.5k times · Source

Good day,

My app has authorization form (SigninController) which is loaded in AppDelegate, and after signing in (checking is in SigninController.m) TabBarController should appear (as main view of application).

How can I change controller from Signin to TabBar and where ??

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  {  
SigninController *aSigninController = [[SigninController alloc] initWithNibName:@"SigninView" bundle:nil];
self.currentController = aSigninController;
[aSigninController release];

self.window.rootViewController = self.currentController;
[self.window makeKeyAndVisible];
return YES;
}

SigninController.m

- (IBAction)signinClick
{
........
if (loginOK == YES)
{        
      //This place is ready to send messages to show TabBar
} else {
    UIAlertView *alert = ......
    [alert show];
    [alert release];
}    
}

Answer

makboney picture makboney · Jul 13, 2011
[appDelegate.window addSubview:appDelegate.tabbarController.view];

[self.view removeFromSuperview];

appDelegate is the application shared delegate.

MyAppDelegate *delegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];