gpt4 book ai didi

ios - 如何告诉按钮不要继续,但在 Storyboard 中仍然有继续

转载 作者:行者123 更新时间:2023-11-29 02:58:05 24 4
gpt4 key购买 nike

有没有办法让按钮不转场但 Storyboard中仍然有转场?我希望它不继续但在 Storyboard 中仍然有继续的原因是因为我有一个 if 语句。

最佳答案

实现shouldPerformSegueWithIdentifier:sender:,并将条件逻辑放入其中。

假设您有一个名为 @"OnMyButton" 的 segue,但您不想在某个变量(我们称之为 count)小于 10 时激活它。然后您可以按如下方式编写此逻辑:

-(BOOL)shouldPerformSegueWithIdentifier:(NSString *)identifier sender:(id)sender {
if ([identifier isEqualToString:@"OnMyButton"]) {
if (count < 10) {
// Count is too low - don't do the segue
return NO;
}
// Fall through to the default, which is YES
}
return YES;
}

关于ios - 如何告诉按钮不要继续,但在 Storyboard 中仍然有继续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23644263/

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