zoukankan      html  css  js  c++  java
  • iOS UI布局-定时器

    定时器是比较常用的一个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

  • 相关阅读:
    codeforces 407B Long Path
    CodeForces 489C Given Length and Sum of Digits...
    hacker cup 2015 Round 1 解题报告
    hacker cup 2015 资格赛
    Codeforces 486(#277 Div 2) 解题报告
    POJ 3468 A Simple Problem with Integers splay
    Codeforces 484(#276 Div 1) D Kindergarten DP
    求平均值问题201308031210.txt
    I love this game201308022009.txt
    QQ
  • 原文地址:https://www.cnblogs.com/jys509/p/4998713.html
Copyright © 2011-2022 走看看