storyboard切换程序进入页面_html/css
来源:动视网
责编:小采
时间:2020-11-27 16:04:27
storyboard切换程序进入页面_html/css
storyboard切换程序进入页面_html/css_WEB-ITnose:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if([userDefaults objectForKey:@autoLogIn] != nil && [userDefaults objectForKey:@rand_code] != nil) { UIStoryboard *board = [U
导读storyboard切换程序进入页面_html/css_WEB-ITnose:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if([userDefaults objectForKey:@autoLogIn] != nil && [userDefaults objectForKey:@rand_code] != nil) { UIStoryboard *board = [U

- (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;}
storyboard切换程序进入页面_html/css
storyboard切换程序进入页面_html/css_WEB-ITnose:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if([userDefaults objectForKey:@autoLogIn] != nil && [userDefaults objectForKey:@rand_code] != nil) { UIStoryboard *board = [U