Home  >  Article  >  Web Front-end  >  Storyboard switching program enters the page_html/css_WEB-ITnose

Storyboard switching program enters the page_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:45:531623browse

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    if([userDefaults objectForKey:@"autoLogIn"] != nil && [userDefaults objectForKey:@"rand_code"] != nil) {        UIStoryboard *board = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];        //获取故事板中某个View        UIViewController *next = [board instantiateViewControllerWithIdentifier:@"mainTabBar"];        [self.window setRootViewController:next];        [self.window makeKeyAndVisible];    }else{        UIStoryboard *board = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];        //获取故事板中某个View        UIViewController *next = [board instantiateViewControllerWithIdentifier:@"mainTabBar"];        [self.window setRootViewController:next];        [self.window makeKeyAndVisible];    }    return YES;}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn