// - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.window.backgroundColor = [UIColor whiteColor]; MainTableViewController *mainT = [[MainTableViewController alloc] init]; //创建NavigationController,可选择添加 UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:mainT]; self.window.rootViewController = nav; [self.window makeKeyAndVisible]; return YES; }
时间: 2024-10-04 16:54:25