self.window=[[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
UIStoryboard *storyBoard=[UIStoryboard storyboardWithName:@"Main" bundle:nil];
ViewController*vc=[storyBoard instantiateViewControllerWithIdentifier:@"ViewController"];
self.window.rootViewController=vc;
[self.window makeKeyAndVisible];
转载于:https://my.oschina.net/jimolengsha/blog/715420