gpt4 book ai didi

ios - 如何在 View 之间创建一个带有密码的窗口?

转载 作者:行者123 更新时间:2023-11-29 03:23:30 24 4
gpt4 key购买 nike

我正在使用带有两个 View 的 Storyboard。 (“PasswordViewController”和“DestinationViewController”)

在PasswordViewController中,我有一个“密码”字段和“确定”按钮。

问题:我无法将“Segue”从“OK”按钮正确设置到“DestinationViewController”。只有在“密码”字段中输入特定密码后才能打开它,否则它不会执行任何操作。如何做到这一点?

最佳答案

如果密码验证成功,您需要覆盖 PasswordViewController 中的 shouldPerformSegueWithIdentifier:sender: 以返回 YES,并且 否则。

-(BOOL)shouldPerformSegueWithIdentifier:(NSString *)identifier sender:(id)sender {
if ([identifier isEqualToString:@"open DestinationViewController"]) {
return [self checkPassword]; // checkPassword method returns YES when the password is right
}
return YES;
}

关于ios - 如何在 View 之间创建一个带有密码的窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20778006/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com