我可以在 ScheduledTimerWithTimeInterval 中传递 UIButton 吗?

发布于 2024-11-01 15:53:58 字数 518 浏览 0 评论 0原文

在控制权返回给用户很久之后,我需要禁用按钮 2.56 秒。我使用以下代码,其中 theButton 是 UIButton 类型,在例程开头用

UIButton *theButton = sender;

定义稍后调用以下命令将更新标签,然后希望启用该按钮。更新标签工作正常,但在尝试启用按钮时崩溃,因此我必须错误地传递 UIButton。谁能给我举个例子/纠正我吗?

    [NSTimer scheduledTimerWithTimeInterval:2.56
                                     target:self
                                   selector:@selector(updateLabel:)
                                   userInfo:theButton
                                    repeats:NO];

感谢您的帮助...

I need to disable a button for 2.56 seconds, long after control is returned to the user. I am using the following code where theButton is type UIButton, defined at the beginning of the routine with

UIButton *theButton = sender;

and later calling the following which will update a label and then, hopefully, enable the button. Updating the label works perfectly but it crashes when trying to enable the button so I must be passing the UIButton incorrectly. Can anyone give me an example / correct me on this?

    [NSTimer scheduledTimerWithTimeInterval:2.56
                                     target:self
                                   selector:@selector(updateLabel:)
                                   userInfo:theButton
                                    repeats:NO];

Thanks for your help...

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

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

发布评论

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

评论(1

天暗了我发光 2024-11-08 15:53:58

我希望您编写 updateLabel: 方法如下

-(void) updateLabel:(NSTimer *)timer1
{
   //your other code...
    [(UIButton *)[timer1 userInfo] setEnabled:YES];
  //your other code
}

谢谢,

I hope you are writing updateLabel: method as follows

-(void) updateLabel:(NSTimer *)timer1
{
   //your other code...
    [(UIButton *)[timer1 userInfo] setEnabled:YES];
  //your other code
}

Thanks,

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