Ich erhalte folgende Fehlermeldung in meiner Konsole:
Von Anwendungen wird erwartet, dass sie am Ende des Anwendungsstarts einen Root View Controller haben.
Nachfolgend finden Sie meine application:didFinishLaunchWithOptions
Methode:
- (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;
}
Im Interface Builder wird die UITabBarController
Delegaten mit dem App-Delegaten verbunden ist.
Weiß jemand, wie man dieses Problem beheben kann?