콘솔에 다음과 같은 오류가 발생합니다.
응용 프로그램 시작시 응용 프로그램에 루트 뷰 컨트롤러가 있어야합니다
아래는 내 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에 연결됩니다.
이 문제를 해결하는 방법을 아는 사람이 있습니까?