- (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_WEB-ITnose的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did107809