IOS 防止UIButton 重复点击

我分别用OC / Swift 写两个常用的防止UIButton重复点击的方法 其实有三种方法 不过那一种太low 不想写

OC 1. 第一种 cancelPreviousPerformRequestsWithTarget

- (void)viewDidLoad {
    [super viewDidLoad];

    UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    btn.backgroundColor = [UIColor redColor];
    [btn addTarget:self action:@selector(TB_btnClick) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
}
-(void)TB_btnClick
{
    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(PrintHelloWorld) object:nil];
    [self performSelector:@selector(PrintHelloWorld) withObject:nil afterDelay:.4];
}
-(void)PrintHelloWorld
{
   NSLog(@"点击了有延迟吗");
}

//  间距都会超过0.4s
2017-06-02 18:51:24.351 button_repeat[12220:301281] 点击了有延迟吗
2017-06-02 18:51:24.895 button_repeat[12220:301281] 点击了有延迟吗
2017-06-02 18:51:25.798 button_repeat[12220:301281] 点击了有延迟吗
2017-06-02 18:51:28.222 button_repeat[12220:301281] 点击了有延迟吗

OC 2. 第二种 通过Runtime 写一个UIButton 类别

// 这是类别的源码

#import "UIButton+TBCustom.h"
#import <objc/runtime.h>

@interface UIButton()

@property (nonatomic, assign) NSTimeInterval custom_acceptEventInterval; // 可以用这个给重复点击加间隔

@end

@implementation UIButton (TBCustom)

+ (void)load{
    Method systemMethod = class_getInstanceMethod(self, @selector(sendAction:to:forEvent:));
    SEL sysSEL = @selector(sendAction:to:forEvent:);
    
    Method customMethod = class_getInstanceMethod(self, @selector(custom_sendAction:to:forEvent:));
    SEL customSEL = @selector(custom_sendAction:to:forEvent:);
    
    //添加方法 语法:BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types) 若添加成功则返回No
    // cls:被添加方法的类  name:被添加方法方法名  imp:被添加方法的实现函数  types:被添加方法的实现函数的返回值类型和参数类型的字符串
    BOOL didAddMethod = class_addMethod(self, sysSEL, method_getImplementation(customMethod), method_getTypeEncoding(customMethod));
    
    //如果系统中该方法已经存在了,则替换系统的方法  语法:IMP class_replaceMethod(Class cls, SEL name, IMP imp,const char *types)
    if (didAddMethod) {
        class_replaceMethod(self, customSEL, method_getImplementation(systemMethod), method_getTypeEncoding(systemMethod));
    }else{
        method_exchangeImplementations(systemMethod, customMethod);
        
    }
}

- (NSTimeInterval )custom_acceptEventInterval{
    return [objc_getAssociatedObject(self, "UIControl_acceptEventInterval") doubleValue];
}

- (void)setCustom_acceptEventInterval:(NSTimeInterval)custom_acceptEventInterval{
    objc_setAssociatedObject(self, "UIControl_acceptEventInterval", @(custom_acceptEventInterval), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (NSTimeInterval )custom_acceptEventTime{
    return [objc_getAssociatedObject(self, "UIControl_acceptEventTime") doubleValue];
}

- (void)setCustom_acceptEventTime:(NSTimeInterval)custom_acceptEventTime{
    objc_setAssociatedObject(self, "UIControl_acceptEventTime", @(custom_acceptEventTime), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (void)custom_sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event{
    
    // 如果想要设置统一的间隔时间,可以在此处加上以下几句
    // 值得提醒一下:如果这里设置了统一的时间间隔,只会影响UIButton, 如果想统一设置,也想影响UISwitch,建议将UIButton分类,改成UIControl分类,实现方法是一样的
     if (self.custom_acceptEventInterval <= 0) {
         // 如果没有自定义时间间隔,则默认为.4秒
        self.custom_acceptEventInterval = .4;
     }
    
    // 是否小于设定的时间间隔
    BOOL needSendAction = (NSDate.date.timeIntervalSince1970 - self.custom_acceptEventTime >= self.custom_acceptEventInterval);
    
    // 更新上一次点击时间戳
    if (self.custom_acceptEventInterval > 0) {
        self.custom_acceptEventTime = NSDate.date.timeIntervalSince1970;
    }
    
    // 两次点击的时间间隔小于设定的时间间隔时,才执行响应事件
    if (needSendAction) {
        [self custom_sendAction:action to:target forEvent:event];
    }
}

这是测试代码

- (void)viewDidLoad {
    [super viewDidLoad];

    UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    btn.backgroundColor = [UIColor redColor];
    [btn addTarget:self action:@selector(TB_btnClick) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
}

-(void)TB_btnClick
{
    NSLog(@"点击了有延迟吗");
}

// 测试数据 都不会少于0.4s
2017-06-02 18:56:48.334 button_repeat[12380:305861] 点击了有延迟吗
2017-06-02 18:56:50.110 button_repeat[12380:305861] 点击了有延迟吗
2017-06-02 18:56:50.702 button_repeat[12380:305861] 点击了有延迟吗
2017-06-02 18:56:51.270 button_repeat[12380:305861] 点击了有延迟吗

Swift

swift 第一种

import UIKit

class SWIFTViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

       view.backgroundColor = UIColor.gray
       // 第一种方式
        StepOne()
    }

    fileprivate func StepOne(){
      let btn = UIButton(frame: CGRect(x: 100, y: 100, width: 100, height: 100))
      btn.backgroundColor = UIColor.green
      btn.addTarget(self, action: #selector(btnClick(_:)), for: .touchUpInside)
      view.addSubview(btn)
    }
    func btnClick(_ btn:UIButton){
        NSObject.cancelPreviousPerformRequests(withTarget: self, selector: #selector(printHelloWorld), object: "abc")
        self.perform(#selector(printHelloWorld), with: nil, afterDelay: 0.4)
    }
    func printHelloWorld(){
        print("Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟")
    }
}

// 注释
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟

Swift 第二种. 参考网上的大牛们的

// 首先给UIButton 协议个类的扩展
import UIKit
import Foundation

public extension UIButton{

    private struct cs_associatedKeys {
        static var accpetEventInterval = "cs_acceptEventInterval"
        static var acceptEventTime = "cs_acceptEventTime"
    }
    /**
     重复点击的时间间隔--自己手动随意设置
     利用运行时机制 将accpetEventInterval值修改
     */
    var cs_accpetEventInterval: TimeInterval {
        get {
            if let accpetEventInterval = objc_getAssociatedObject(self, &cs_associatedKeys.accpetEventInterval) as? TimeInterval {

                return accpetEventInterval            }
            return 0.4
        }
        set {
            objc_setAssociatedObject(self, &cs_associatedKeys.accpetEventInterval, newValue as TimeInterval, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
    }
    /**
     重复点击的时间间隔--自己手动随意设置
     利用运行时机制 将acceptEventTime值修改
     */
    var cs_acceptEventTime : TimeInterval {
        get {
            if let acceptEventTime = objc_getAssociatedObject(self, &cs_associatedKeys.acceptEventTime) as? TimeInterval {
                return acceptEventTime
            }
            return 0.4
        }
        set {
            objc_setAssociatedObject(self, &cs_associatedKeys.acceptEventTime, newValue as TimeInterval, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
        }
    }
    /**
     重写初始化方法,在这个方法中实现在运行时方法替换
     */
    override open class func initialize() {
        let changeBefore: Method = class_getInstanceMethod(self, #selector(UIButton.sendAction(_:to:for:)))
        let changeAfter: Method = class_getInstanceMethod(self, #selector(UIButton.cs_sendAction(action:to:for:)))
        method_exchangeImplementations(changeBefore, changeAfter)
    }
    /**
     在这个方法中判断接收到当前事件的时间间隔是否满足我们所设定的间隔,会一直循环调用到满足才会return
     */
    func cs_sendAction(action: Selector, to target: AnyObject?, for event: UIEvent?) {
        if NSDate().timeIntervalSince1970 - self.cs_acceptEventTime < self.cs_accpetEventInterval {
            return
        }
        if self.cs_accpetEventInterval > 0 {
            self.cs_acceptEventTime = NSDate().timeIntervalSince1970
        }
        self.cs_sendAction(action: action, to: target, for: event)
    }
}

第二种 测试

import UIKit

class SWIFTViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

       view.backgroundColor = UIColor.gray

       // 第二种方式
        StepTwo()
    }

    fileprivate func StepTwo(){
        let btn = UIButton(frame: CGRect(x: 100, y: 250, width: 100, height: 100))
        btn.backgroundColor = UIColor.red
        btn.addTarget(self, action: #selector(btnClickTwo(_:)), for: .touchUpInside)
        view.addSubview(btn)
    }
    func btnClickTwo(_ btn:UIButton){
       print("Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟")
    }
}

// 测试
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟
Swift 打印不出时间- 如果你知道 请大神 告知 --- 是否有延迟

github 地址 https://github.com/tianbinbin/Call_UIButton_Repeat 喜欢点个赞😍

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容