iOS 防止按钮多次点击造成多次响应的方法
在日常开发中经常会碰到一种bug就是因为用户快速点击某个按钮,导致页面重复push或者重复发送网络请求。这样的问题既对用户体验有影响,而且还会一定程度上增加服务器的压力。
目前,我为了防止按钮快速点击主要使用以下两种办法
1.在每次点击时先取消之前的操作(网上看到的方法)
- (void)buttonClicked:(id)sender { //这里是关键,点击按钮后先取消之前的操作,再进行需要进行的操作 [[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(buttonClicked:) object:sender]; [self performSelector:@selector(buttonClicked: )withObject:sender afterDelay:0.2f]; }
2.点击后将按钮置为不可点击状态,几秒后恢复
-(void)buttonClicked:(id)sender{ self.button.enabled = NO; [self performSelector:@selector(changeButtonStatus) withObject:nil afterDelay:1.0f];//防止用户重复点击 } -(void)changeButtonStatus{ self.button.enabled = YES; }
或者使用:
- (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. }
如果大家有更好的解决办法,欢迎大家留言说明。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索ios
js防止按钮多次点击、ios防止按钮多次点击、防止按钮多次点击、jquery 防止多次点击、http一次请求多次响应,以便于您获取更多的相关知识。
时间: 2024-10-26 14:51:17