服务器之家

服务器之家 > 正文

iOS 防止按钮多次点击造成多次响应的方法

时间:2021-02-20 15:52     来源/作者:Fiona_L

iOS 防止按钮多次点击造成多次响应的方法

在日常开发中经常会碰到一种bug就是因为用户快速点击某个按钮,导致页面重复push或者重复发送网络请求。这样的问题既对用户体验有影响,而且还会一定程度上增加服务器的压力。

目前,我为了防止按钮快速点击主要使用以下两种办法

1.在每次点击时先取消之前的操作(网上看到的方法)

?
1
2
3
4
5
6
- (void)buttonClicked:(id)sender
{
  //这里是关键,点击按钮后先取消之前的操作,再进行需要进行的操作
  [[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(buttonClicked:) object:sender];
  [self performSelector:@selector(buttonClicked: )withObject:sender afterDelay:0.2f];
}

2.点击后将按钮置为不可点击状态,几秒后恢复

?
1
2
3
4
5
6
7
8
-(void)buttonClicked:(id)sender{
  self.button.enabled = NO;
  [self performSelector:@selector(changeButtonStatus) withObject:nil afterDelay:1.0f];//防止用户重复点击
}
 
-(void)changeButtonStatus{
  self.button.enabled = YES;
}

或者使用:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- (void) timeEnough
{
 
UIButton *btn=(UIButton*)[self.view viewWithTag:33];
 
btn.selected=NO;
[timer invalidate];
 
timer=nil;
}
 
 - (void) btnDone:(UIButton*)btn
 {
 if(btn.selected) return;
 btn.selected=YES;
 [self performSelector:@selector(timeEnough) withObject:nil afterDelay:3.0]; //使用延时进行限制。
//to do something.

如果大家有更好的解决办法,欢迎大家留言说明。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://www.jianshu.com/p/75c17cfac7a4

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部