标签:
//
- (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;
}
标签:
原文地址:http://my.oschina.net/u/2346786/blog/483880