首頁  >  文章  >  web前端  >  storyboard切换程序进入页面_html/css_WEB-ITnose

storyboard切换程序进入页面_html/css_WEB-ITnose

WBOY
WBOY原創
2016-06-24 11:45:531625瀏覽

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn