gpt4 book ai didi

ios - 如何防止 iOS 中同一个 UIButton 发生多个事件?

转载 作者:可可西里 更新时间:2023-11-01 03:06:53 26 4
gpt4 key购买 nike

我想防止连续多次点击同一个 UIButton

我尝试使用 enabledexclusiveTouch 属性,但没有用。如:

-(IBAction) buttonClick:(id)sender{
button.enabled = false;
[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionAllowAnimatedContent animations:^{
// code to execute
}
completion:^(BOOL finished){
// code to execute
}];
button.enabled = true;
}

最佳答案

您所做的是,您只需在 block 外设置启用开/关。这是错误的,它会在调用此方法后执行,因此在调用完成 block 之前不会禁用按钮。相反,您应该在动画完成后重新启用它。

-(IBAction) buttonClick:(id)sender{
button.enabled = false;
[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionAllowAnimatedContent animations:^{
// code to execute
}
completion:^(BOOL finished){
// code to execute
button.enabled = true; //This is correct.
}];
//button.enabled = true; //This is wrong.
}

哦,是的,而不是 truefalseYESNO 看起来不错。 :)

关于ios - 如何防止 iOS 中同一个 UIButton 发生多个事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28343070/

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