目前有一个小问题。
基本上我的 appdelegate 正在加载我的 mainViewController:
self.viewController = [[MainViewController alloc] initWithNibName:@"mainViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
现在当 mainViewController 加载时,我想检查用户是否已经登录:
- (void)viewDidLoad
{
[super viewDidLoad];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSInteger myInt = [prefs integerForKey:@"user"];
if(!myInt)
{
self.loginViewController = [[LoginViewController alloc] initWithNibName:@"LoginViewController" bundle:nil];
self.loginViewController.delegate = self;
self.loginViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:self.loginViewController animated:YES];
}
}
它成功地检查了用户是否登录,如果用户没有登录则进入 if 语句。但是,在运行它之后,最终加载的视图是 mainViewController,而不是 loginViewController。
如果我有一个单独的按钮可以使用此代码将我发送到登录页面,它可以正常工作。当然,这不是我需要的,我需要用户必须登录 =p