码迷,mamicode.com
首页 > 其他好文 > 详细

更加精确的定时器:dispatch_source_t

时间:2016-11-16 01:34:36      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:hand   class   handle   eve   代码   启动   start   tar   span   

在使用定时器时,我们经常使用NSTimer,但是由于NSTimer会受RunLoop影响,当RunLoop处理的任务很多时,就会导致NSTimer的精度降低,所以在一些对定时器精度要求很高的情况下,应该考虑采用GCD定时器,实现代码如下:

    // 队列(队列时用来确定该定时器存在哪个队列中)
    dispatch_queue_t queue = dispatch_get_main_queue();
    
    // 创建GCD定时器
    _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
    
    dispatch_time_t start = dispatch_time(DISPATCH_TIME_NOW, 0 * NSEC_PER_SEC); // 开始时间
    uint64_t interval = 2 * NSEC_PER_SEC; // 时间间隔
    
    // 设置GCD定时器开始时间,间隔时间
    dispatch_source_set_timer(_timer, start, interval, 0);
    
    // GCD定时器处理回调方法
    dispatch_source_set_event_handler(_timer, ^{
        NSLog(@"---------%@", [NSThread currentThread]);
    });
    
    // GCD定时器启动,默认是关闭的
    dispatch_resume(_timer);
 
    /**
        不使用时,记得销毁dispatch_source_t
        dispatch_source_cancel(_timer);
     */

 

更加精确的定时器:dispatch_source_t

标签:hand   class   handle   eve   代码   启动   start   tar   span   

原文地址:http://www.cnblogs.com/shpyoucan/p/6067675.html

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