J'obtiens l'erreur suivante dans ma console:
Les Applications sont censés avoir une vue de la racine de contrôleur à la fin de lancement de l'application
Ci-dessous mon application:didFinishLaunchWithOptions
méthode:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Set Background Color/Pattern
self.window.backgroundColor = [UIColor blackColor];
self.tabBarController.tabBar.backgroundColor = [UIColor clearColor];
//self.window.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"testbg.png"]];
// Set StatusBar Color
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent];
// Add the tab bar controller's current view as a subview of the window
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
return YES;
}
AU bureau de l'IB, le tabBarController du délégué est relié à l'Application Délégué.
Tout savoir comment résoudre ce problème?