appdelegate comment pushViewController avec storyboard

Dans mon application délégué je suis poussant l'utilisateur à un view controller si les détails de l'utilisateur sont enregistrées

AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
  //cached user
    PFUser *currentUser = [PFUser currentUser];
    if (currentUser)
    {
        NSLog(@"current user signing and looking for VC %@", currentUser);
        //A user was cached, so skip straight to the main view

        UINavigationController *navigationController = (UINavigationController *)self.window.rootViewController;
        TaskSelectionViewController*viewController = [[TaskSelectionViewController alloc] initWithUser:currentUser];
        [navigationController pushViewController:viewController animated:YES];

                NSLog(@"VC found");
            } else {
                NSLog(@"VC not found");
    }

TaskSelectionViewController.m

 -(id)initWithUser:(PFUser *)currentUser
{
NSLog(@"current user %@", currentUser);

NSLog(@"task Selection initwithuser");
return self;
 }

Le push est un travail, mais tout ce que j'obtiens est le NavigationController barre en haut et un Écran noir.

ce qui est absent ??

merci pour votre aide.

OriginalL'auteur HernandoZ | 2013-01-04