iOS 封装一个 button 分类实现倒计时

@interface UIButton (LBTimerCategory)

- (void)startCountDownTime:(int)time withCountDownBlock:(void(^)(void))countDownBlock;

@end

#import "UIButton+LBTimerCategory.h"

static NSString *lbTempText;

@implementation UIButton (LBTimerCategory)

- (void)startCountDownTime:(int)time withCountDownBlock:(void(^)(void))countDownBlock{
    
    
    
    [self initButtonData];
    
    [self startTime:time];
    
    if (countDownBlock) {
    
    
        countDownBlock();
    }
}

- (void)initButtonData{
    
    
    
    yasinTempText = [NSString stringWithFormat:@"%@",self.titleLabel.text];
  
}

- (void)startTime:(int)time{
    
    
    
    __block int timeout = time;
    UIFont *font = self.titleLabel.font;
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    
    dispatch_source_t _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,queue);
    
    dispatch_source_set_timer(_timer,dispatch_walltime(NULL, 0),1.0 * NSEC_PER_SEC, 0);
    
    dispatch_source_set_event_handler(_timer, ^{
    
    
        
        //倒计时结束
        if(timeout <= 0){
    
    
            
            dispatch_source_cancel(_timer);
            
            dispatch_async(dispatch_get_main_queue(), ^{
    
    
                
                [self setTitle:yasinTempText forState:UIControlStateNormal];
                self.userInteractionEnabled = YES;
                self.titleLabel.font = font;
            });
            
        }else{
    
    
            
            dispatch_async(dispatch_get_main_queue(), ^{
    
    
                
                NSString *text = [NSString stringWithFormat:@"%02d秒重新获取",timeout];
                [self setTitle:text forState:UIControlStateNormal];
                self.userInteractionEnabled = NO;
                self.titleLabel.font = [UIFont systemFontOfSize:14];
            });
            
            timeout --;
            
        }
        
    });
    
    dispatch_resume(_timer);
    
}

使用方法

   [self.getCodeBtn startCountDownTime:60 withCountDownBlock:^{
    
    
        [weakSelf.registerView.getCodeBtn setTitle:@"获取验证码" forState:UIControlStateNormal];
    }];

效果图
请添加图片描述

猜你喜欢

转载自blog.csdn.net/LIUXIAOXIAOBO/article/details/121032139