我有一个带有工作登录和主视图控制器的故事板,后者是登录成功时用户导航到的视图控制器。我的目标是如果身份验证(存储在钥匙串中)成功则立即显示主视图控制器,如果身份验证失败则显示登录视图控制器。基本上,我想在我的 AppDelegate 中执行此操作:
// url request & response work fine, assume success is a BOOL here
// that indicates whether login was successful or not
if (success) {
// 'push' main view controller
} else {
// 'push' login view controller
}
我知道 performSegueWithIdentifier 方法:但是这个方法是 UIViewController 的实例方法,所以不能从 AppDelegate 中调用。如何使用我现有的故事板做到这一点?
编辑:
Storyboard 的初始视图控制器现在是一个导航控制器,它没有连接到任何东西。我使用了 setRootViewController: 区别,因为 MainIdentifier 是一个 UITabBarController。然后这就是我的线条的样子:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
BOOL isLoggedIn = ...; // got from server response
NSString *segueId = isLoggedIn ? @"MainIdentifier" : @"LoginIdentifier";
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
UIViewController *initViewController = [storyboard instantiateViewControllerWithIdentifier:segueId];
if (isLoggedIn) {
[self.window setRootViewController:initViewController];
} else {
[(UINavigationController *)self.window.rootViewController pushViewController:initViewController animated:NO];
}
return YES;
}
欢迎提出建议/改进!