我的应用程序中只有两个 ViewController
故事板设置:-
我有一个从我ViewController
的到 MainTableViewController 直接连接的推送 segue。我希望我的应用程序在用户输入正确的密码后立即重定向到主视图。
这是我的代码: -
- (IBAction)checkInput
{
NSMutableString *aString = [NSMutableString stringWithFormat:firstDigit.text];
[aString appendFormat:secondDigit.text];
[aString appendFormat:thirdDigit.text];
[aString appendFormat:fourthDigit.text];
if([aString isEqualToString:@"1111"])
{
result.text = @"Right Password";
//UIStoryboard *sb = [UIStoryboard storyboardWithName:@"MainStoryBoard" bundle:nil];
//UITableViewController *tvc = [self.storyboard instantiateViewControllerWithIdentifier:@"mainTableViewController"];
//[self.navigationController pushViewController:tvc animated:YES];
//[self removeFromParentViewController];
[self performSegueWithIdentifier:@"mainSegue" sender:self];
}
else {
result.text = @"Wrong Password";
}
NSLog(@"%@", aString);
}
checkInput
一旦用户输入最后一位数字,就会被调用。我在Editing did End
我的第四个 TextField 中调用它。
任何帮助将非常感激。谢谢