selector

iOS UIButton 防止连续点击(最后一次才去响应事件)

2020-07-01  本文已影响0人  马叔叔

方案一

- (void)buttonClickMethod:(UIButton *)sender {
    
    // 每次点击的时候都会先取消一次响应,然后调用perform方法,延迟响应该事件,避免多次响应
    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(delayResponseMethod) object:btn];
    // 延迟执行,一般设置1秒左右,太久会显得有延迟,响应也不能太慢
    [self performSelector:@selector(delayResponseMethod) withObject:btn afterDelay:1.0];
}
- (void)delayResponseMethod {
    NSLog(@"延迟执行的方法");
}

方案二

//定时器
@property (nonatomic, strong) NSTimer *timer;//定时器
@property(nonatomic, assign) NSInteger count;
//需要给count一个默认值,比如0
- (void)buttonClickMethod:(UIButton *)sender {
    self.count ++;
    [self.timer invalidate];
    self.timer = nil;
    self.timer =[NSTimer timerWithTimeInterval:1.0 target:self selector:@selector(delayResponseMethod) userInfo:nil repeats:NO];
/* NSRunLoopCommonModes 防止滚动的时候有延迟*/
    [[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
}
- (void)delayResponseMethod {
    NSLog(@"延迟执行的方法");
}

方案三

通过Runtime交换UIButton的响应事件方法,从而控制响应事件的时间间隔。

1 创建一个UIButton的分类,使用runtime增加public属性cs_eventInterval和private属性cs_eventInvalid。
2 在+load方法中使用runtime将UIButton的-sendAction:to:forEvent:方法与自定义的cs_sendAction:to:forEvent:方法进行交换
3 使用cs_eventInterval作为控制cs_eventInvalid的计时因子,用cs_eventInvalid控制UIButton的event事件是否有效。
*代码实现如下

@interface UIButton (Extension)

/** 时间间隔 */
@property(nonatomic, assign)NSTimeInterval cs_eventInterval;

@end

import "UIButton+Extension.h"

import <objc/runtime.h>

static char *const kEventIntervalKey = "kEventIntervalKey"; // 时间间隔
static char *const kEventInvalidKey = "kEventInvalidKey"; // 是否失效

@interface UIButton()

/** 是否失效 - 即不可以点击 */
@property(nonatomic, assign)BOOL cs_eventInvalid;

@end

@implementation UIButton (Extension)

pragma mark - click

pragma mark - set | get

上一篇下一篇

猜你喜欢

热点阅读