目前有一个小问题。
基本上我的 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语句。但是,运行它之后,最终加载的 View 是mainViewController,而不是loginViewController。
如果我有一个单独的按钮可以使用此代码将我发送到登录页面,它可以正常工作。当然,这不是我需要的,我需要用户必须登录=p
放入-viewDidAppear:
.
关于objective-c - 立即在 IOS 中加载新 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10426841/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |