倒计时定时器控件(GCD)

2017年4月13日
一.效果如下

Paste_Image.png

二.实现

#import <UIKit/UIKit.h>

@interface HuCountTimeView : UIView

@property (nonatomic, strong)UILabel *timeL;

//计时时间到后,回调接口
@property (nonatomic, copy) void (^timeOut)(void);

//到临界值修改颜色。
@property (nonatomic, copy) blk_t changeColorTimeOut;
/**
 函数初始化函数

 @param timeNum 倒计时最大值,需要转换成秒
 @param dic 设置倒计时字体颜色等相关参数
 @return 返回倒计时对象
 */
- (id)initWithTime:(NSInteger)timeNum AndDic:(NSDictionary*)dic;
//开始
- (void)startCountDown;
//暂停
- (void)stopCountDown;
//结束
- (void)endCountDown;

//定时器结束
- (void)countDownStop;
//当前耗时
- (NSInteger)getUseTime;
//剩余时间
- (NSInteger)getRemainTime;

@end
#import "HuCountTimeView.h"

@interface HuCountTimeView()
{
    dispatch_source_t _timer;//定时器对象
    NSInteger _timeNum;//初始化倒计时最大值
    NSInteger _originalTimrNum; //出事后就不会变
}

@property (nonatomic, assign)BOOL isCreat;//首次创建Yes
@property (nonatomic, assign)BOOL isStart;//启动
@property (nonatomic, assign)BOOL isPause;//停止

@property (nonatomic, assign)BOOL needChangeColor;//是否需要改变
@property (nonatomic, assign)BOOL isSecondFlag;//是否只显示秒数
@property (nonatomic, assign)BOOL isDayFlag;//是否显示天数

@end


@implementation HuCountTimeView

- (id)initWithTime:(NSInteger)timeNum AndDic:(NSDictionary*)dic
{
    self = [super init];
    if (self) {
        [self initDataWithTime:timeNum];
        [self initViewWithDic:dic];
    }
    
    return self;
}

- (void)initDataWithTime:(NSInteger)timeNum
{
    _originalTimrNum = _timeNum = timeNum;
}

- (void)initViewWithDic:(NSDictionary*)dic
{
    self.timeL = [[UILabel alloc] initWithFrame:CGRectZero];
    _timeL.font =  dic[fontSizeKey] ?: fontsize_T3;
    _timeL.textColor = dic[fontColorKey] ?: [UIColor blackColor];
    _isSecondFlag = dic[isSecond];
    _isDayFlag = dic[@"isDayFlag"];
    [self addSubview:_timeL];
    
    //首次设置frame
    if (_isSecondFlag)
        [self setCoutTimeView:[NSString stringWithFormat:@"%ldS",(long)_timeNum]];
    else if(_isDayFlag)
        [self setCoutTimeView:[HuConfigration timeDayStrWithNum:_timeNum]];
    else
        [self setCoutTimeView:[HuConfigration timeStrWithNum:_timeNum]];
}

- (void)setCoutTimeView:(NSString *)timeStr
{
    _timeL.text = timeStr;
    [self layoutView];
}

//开始
- (void)startCountDown
{
    _isStart = YES;
    [self createCountTime];
}

//暂停
- (void)stopCountDown
{
    if (_isCreat) {
        //挂起
        dispatch_suspend(_timer);
        _isPause = YES;
    }
}

//结束
- (void)endCountDown
{
    if (_isCreat) {
        if(_isPause){
            //恢复
            dispatch_resume(_timer);
            
        }else{
            //移出
            dispatch_source_cancel(_timer);
            [self resetData];
        }
        
        
    }
}
- (void)countDownStop{
    //移出
    dispatch_source_cancel(_timer);
    [self resetData];
}
- (void)createCountTime
{
    if (_isCreat == NO) {
        dispatch_queue_t globalQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
        _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, globalQueue);
        _isCreat = YES;
    }
    
    //设置相关参数
    //1.设置时间间隔,每秒执行一次
    dispatch_source_set_timer(_timer, dispatch_walltime(NULL, 0), 1.0*NSEC_PER_SEC, 0);
    //2.设置相关回调
    WS(weakSelf);
    dispatch_source_set_event_handler(_timer, ^{
        
        NSString *strTime = [HuConfigration timeStrWithNum:_timeNum];
        
        if (_isSecondFlag){
            strTime = [NSString stringWithFormat:@"%ldS",(long)_timeNum];
        }
        
        if (_isDayFlag) {
            strTime = [HuConfigration timeDayStrWithNum:_timeNum];
        }
        
        dispatch_async(dispatch_get_main_queue(), ^{
            //在这根据自己的需求去刷新UI
            [weakSelf setCoutTimeView:strTime];
        });
        
        //时间到了回调
        if (_timeNum <= 0) {
            if(_timeOut){
                if(_timeOut){
                    _timeOut(); //时间到了回调
                }
            }
        }else{
            if(_timeNum <= 600)
            {
                if (_needChangeColor) {
                    if (_changeColorTimeOut) {
                        self.changeColorTimeOut();//修改颜色
                        _needChangeColor = NO;
                    }
                }
            }
            
            _timeNum --;
            
        }
    });
    
    //3.启动timer
    dispatch_resume(_timer);
}

- (void)setChangeColorTimeOut:(blk_t)blk
{
    if (_changeColorTimeOut == nil) {
        _changeColorTimeOut = blk;
        _needChangeColor = YES;
    }
}

- (void)layoutView
{
    UILabel *tmpLabel = self.timeL;
    tmpLabel.textAlignment = NSTextAlignmentRight;
    CGSize size = [tmpLabel.text sizeWithAttributes:@{NSFontAttributeName:tmpLabel.font}];
    if (size.width < 28) {
        size.width = 28;
    }
    CGRect frame = CGRectMake(0, 0, size.width, 25);
    _timeL.frame = frame;
    frame = self.frame;
    frame.size = _timeL.frame.size;
    self.frame = frame;
}

- (void)resetData
{
    _isStart = NO;
    _isCreat = NO;
    _timeNum = 0;
    
    NSString *defaultString = (_isSecondFlag) ? @"" : [HuConfigration timeStrWithNum:_timeNum];
    if (_isDayFlag) {
        defaultString = [HuConfigration timeDayStrWithNum:_timeNum];
    }
    [self setCoutTimeView:defaultString];
}

- (NSInteger)getUseTime
{
    return _originalTimrNum - _timeNum;
}

- (NSInteger)getRemainTime
{
    return _timeNum;
}

@end

如果您发现本文对你有所帮助,如果您认为其他人也可能受益,请把它分享出去。

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

推荐阅读更多精彩内容