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