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

iOS UI布局-定时器

时间:2015-11-26 21:06:56      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

定时器是比较常用的一个UI控件,在付款、抢购时,经常会使用到。提取成一个通用的方法

/**
 *  倒计时GCD通用方法
 *  通常用的计时器都是用NSTimer,但是NSTimer在线程很吃紧的时候效果不佳,使用GCD计时相对更好
 *
 *  @param seconds   倒计时间 单位:秒
 *  @param showLable 需要显示的文本框
 *  @param endBlock  倒计时结束后,回调的Block
 */
- (void)startTimerWithSeconds:(long)seconds showLable:(UILabel *)showLable endBlock:(void (^)())endBlock
{
    __block long timeout = seconds; // 倒计时时间
    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){ // 倒计时结束,回调block
            dispatch_source_cancel(_timer);
            dispatch_async(dispatch_get_main_queue(), ^{
                if (endBlock) {
                    endBlock();
                }
            });
        } else{

            NSString *strTime = [NSString stringWithFormat:@"%02ld分%02ld秒",(long)(timeout % 3600 / 60), (long)(timeout  % 60)];

            // 回到主界面,显示倒计时
            dispatch_async(dispatch_get_main_queue(), ^{
                showLable.text = strTime;
            });
            
            timeout--;
        }
    });
    
    dispatch_resume(_timer);
}

调用时就很简单了

[self startTimerWithSeconds:1800 showLable:self.timerLabel endBlock:nil];

效果:

技术分享

源代码下载:http://pan.baidu.com/s/1mgKrGZA

 

iOS UI布局-定时器

标签:

原文地址:http://www.cnblogs.com/jys509/p/4998713.html

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