如何以编程方式设置首先按故事板加载哪个屏幕

时间:2014-04-23 05:09:02

标签: ios navigation storyboard

我正在开发具有登录屏幕的应用。它以用户默认值记录用户是否登录。我想将用户引导到登录页面,如果他还没有登录,否则导航到应用程序主屏幕。如何使用故事板以编程方式执行此操作。

if(![[NSUserDefaults standardUserDefaults] boolForKey:@"loggedin"]) {

    //If logged in

} else {

   //if logged out

}

2 个答案:

答案 0 :(得分:3)

在你的appdelegate中写下这段代码。并且别忘了给你的viewcontroller ep>提供标识符名称

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];

        UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];

        UIViewController *viewController = // determine the initial view controller here and instantiate it with [storyboard instantiateViewControllerWithIdentifier:<storyboard id>];

        self.window.rootViewController = viewController;
        [self.window makeKeyAndVisible];

        return YES;
    }

答案 1 :(得分:1)

为什么不总是使用&#34; Loading&#34;视图。 LoadingViewController检查用户是否登录,然后转换到正确的viewcontroller。