self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor redColor];
[self.window setRootViewController:[[UIViewController alloc]init]];
[self.window makeKeyAndVisible];
我是这样解决的,不知道对不对,反正能运行起来。
self.window.backgroundColor = [UIColor redColor];
[self.window setRootViewController:[[UIViewController alloc]init]];
[self.window makeKeyAndVisible];
我是这样解决的,不知道对不对,反正能运行起来。
2015-10-20