AppDelegate设置首页显示界面

//
- (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;
}


你可能感兴趣的:(AppDelegate设置首页显示界面)