禁用和延迟 IBAction 按钮

发布于 2024-09-27 03:45:37 字数 209 浏览 2 评论 0原文

我有一个 IBAction 按钮,我想在 30 秒延迟后启用它。该按钮将出现在视图中,但禁用 30 秒。

有谁知道我将如何去做这件事?

这就是我所拥有的 - 一个播放一些音频的简单 IBAction:

-(IBAction) playSound:(id)sender {

    [theAudio play];

}

I have an IBAction button that I would like to enable after a 30 second delay. the button would be in the view but disabled for 30 secs.

Does anyone know how I would go about doing this?

Here's what I have - a simple IBAction that plays some audio:

-(IBAction) playSound:(id)sender {

    [theAudio play];

}

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

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

发布评论

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

评论(2

独守阴晴ぅ圆缺 2024-10-04 03:45:37

您可以使用这个:

- (IBAction)playSound:(id)sender
{
    [theAudio play];
    UIButton *theButton = (UIButton *) sender;
    theButton.enabled = NO;
    [self performSelector:@selector(enableButton:) withObject:theButton afterDelay:30.0];
}

- (void)enableButton:(UIButton *)button
{
    button.enabled = YES;
}

假设您想在按下按钮时禁用该按钮。

You can use this:

- (IBAction)playSound:(id)sender
{
    [theAudio play];
    UIButton *theButton = (UIButton *) sender;
    theButton.enabled = NO;
    [self performSelector:@selector(enableButton:) withObject:theButton afterDelay:30.0];
}

- (void)enableButton:(UIButton *)button
{
    button.enabled = YES;
}

Assuming that you want to disable the button when it gets pressed.

两个我 2024-10-04 03:45:37

在 viewDidLoad 或您想要的其他合适的方法中:

[myButton setUserInteractionEnabled:FALSE];
[NSTimer scheduledTimerWithTimeInterval:30 target:self selector:@selector(enableButton:) userInfo:nil repeats:NO];

然后,

- (void)enableButton:(NSTimer *)timer {
    [myButton setUserInteractionEnabled:TRUE];
}

注意:我还没有编译代码,只是编写了。可能有错别字。

In viewDidLoad or other suitable method that you want:

[myButton setUserInteractionEnabled:FALSE];
[NSTimer scheduledTimerWithTimeInterval:30 target:self selector:@selector(enableButton:) userInfo:nil repeats:NO];

Then,

- (void)enableButton:(NSTimer *)timer {
    [myButton setUserInteractionEnabled:TRUE];
}

NOTE : I have not compiled the code, just wrote. There might be typo.

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