ฉันได้รับข้อผิดพลาดต่อไปนี้ในคอนโซลของฉัน:
แอปพลิเคชันคาดว่าจะมีตัวควบคุมรูทวิวเมื่อสิ้นสุดการเปิดตัวแอปพลิเคชัน
ด้านล่างเป็น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;
}
ในเครื่องมือสร้างอินเทอร์เฟซUITabBarControllerผู้รับมอบสิทธิ์จะถูกเชื่อมโยงกับตัวแทนแอป
ใครรู้วิธีแก้ไขปัญหานี้

![ภาพ![]](https://i.stack.imgur.com/cY3GG.png)
