码迷,mamicode.com
首页 > 移动开发 > 详细

iOS解决按钮短时间内多次点击只触发一次事件方法

时间:2019-02-22 16:44:38      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:bin   class   sts   cto   方法   oid   tar   nis   span   

- (void)unisversalButtonAcrion:(UIButton *)sender
{
    [[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(todoSomething:) object:sender];
    [self performSelector:@selector(todoSomething:) withObject:sender afterDelay:0.3f];
}

- (void)todoSomething:(UIButton *)sender {
    if (self.bindIngBankCarBlock) {
        self.bindIngBankCarBlock();
    }
}

 

iOS解决按钮短时间内多次点击只触发一次事件方法

标签:bin   class   sts   cto   方法   oid   tar   nis   span   

原文地址:https://www.cnblogs.com/qiyiyifan/p/10419126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!