我目前想检查 NSUserDefaults 中是否存在用户名,如果不存在我想加载模式视图控制器。问题是即使用户名为零,它仍然表现得好像它存在一样。这是我所拥有的:
//Check if the login data exists
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"username"] != nil) {
//Load Login View if no username is found
NSLog(@"No username found");
LoginViewController *loginView = [[LoginViewController alloc] init];
[self presentViewController:loginView animated:YES completion:nil];
}
else {
NSString *savedUsername = [defaults stringForKey:@"username"];
NSLog(@"Username found: %@", savedUsername);
}
我不断在我的 NSLog 中得到这个:Username found: (null)
任何帮助,将不胜感激!