storyboard切换程序进入页面

来源:互联网 发布:工控软件下载 编辑:程序博客网 时间:2024/05/01 20:27
- (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;}

0 0