用户触摸 UIButton 次数过多 iPhone

发布于 2024-12-12 07:24:02 字数 482 浏览 1 评论 0原文

如果用户不耐烦并在加载下一个视图之前触摸此按钮,我会遇到嵌套视图问题,为什么这不起作用?我以为将按钮 BOOL 启用为 no 可以修复它,但事实并非如此。

-(IBAction)start:(id)sender
{
    startButton.enabled = NO;
    [activity startAnimating];
    [locationManager stopUpdatingLocation];
    ViewController *view = [[ViewController alloc]init];
    NSManagedObjectContext *context = [self managedObjectContext];
    view.managedObjectContext = context;
    [self.navigationController pushViewController:view animated:YES];
}

If the user gets impatient and touches this button before the next view can load, I get nested view issues, why isn't this working? I assumed that turning the button BOOL enabled to no would fix it, but it doesn't.

-(IBAction)start:(id)sender
{
    startButton.enabled = NO;
    [activity startAnimating];
    [locationManager stopUpdatingLocation];
    ViewController *view = [[ViewController alloc]init];
    NSManagedObjectContext *context = [self managedObjectContext];
    view.managedObjectContext = context;
    [self.navigationController pushViewController:view animated:YES];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅浅 2024-12-19 07:24:02

该 OP 代码应该可以工作。确保 startButton 是正确的按钮并已在 IB 中连接。

如果该操作是由您要禁用的按钮引起的,则 self.enabled = NO; 更直接。

That OP code should work. Ensure startButton is the correct button and connected in IB.

If the action is caused by the button you want to disable then self.enabled = NO; is more direct.

与君绝 2024-12-19 07:24:02

将整个事情放在 if 语句中。

-(IBAction)start:(id)sender
{
    if(variable == TRUE){
    [activity startAnimating];
    [locationManager stopUpdatingLocation];
    ViewController *view = [[ViewController alloc]init];
    NSManagedObjectContext *context = [self managedObjectContext];
    view.managedObjectContext = context;
    [self.navigationController pushViewController:view animated:YES];
    }
}

并在需要时将变量 = 设置为 TRUE 或 FALSE。

Have the entire thing inside an if statement.

-(IBAction)start:(id)sender
{
    if(variable == TRUE){
    [activity startAnimating];
    [locationManager stopUpdatingLocation];
    ViewController *view = [[ViewController alloc]init];
    NSManagedObjectContext *context = [self managedObjectContext];
    view.managedObjectContext = context;
    [self.navigationController pushViewController:view animated:YES];
    }
}

And set your variable = to TRUE or FALSE whenever you need to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文