コンソールに次のエラーが表示されます。
アプリケーションは、アプリケーションの起動の最後にルートビューコントローラーを持っていることが期待されます
以下は私のapplication:didFinishLaunchWithOptions
方法です:
- (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;
}
Interface Builderでは、UITabBarController
のデリゲートはApp Delegateに接続されています。
誰でもこの問題を修正する方法を知っていますか?