美文网首页
dispatch_source_t

dispatch_source_t

作者: hehc08 | 来源:发表于2017-09-15 16:09 被阅读0次

    NSTimer受runloop的影响,由于runloop需要处理很多任务,导致NSTimer的精度降低,在日常开发中,如果我们需要对定时器的精度要求很高的话,可以考虑dispatch_source_t去实现 。dispatch_source_t精度很高,系统自动触发,系统级别的源。下面是通过dispatch_source_t 创建 计时器的例子

    dispatch_queue_t queue = dispatch_get_global_queue(0, 0);
    
    self.timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
    
    //开始时间
    dispatch_time_t start = dispatch_time(DISPATCH_TIME_NOW, 3.0 * NSEC_PER_SEC);
    
    //间隔时间
    uint64_t interval = 2.0 * NSEC_PER_SEC;
    
    
    dispatch_source_set_timer(self.timer, start, interval, 0);
    
    //设置回调
    dispatch_source_set_event_handler(self.timer, ^{
    
        NSLog(@"----self.timer---");
    });
    
    
    //启动timer
    dispatch_resume(self.timer);
    

    iOS 并行编程:GCD Dispatch Sources

    相关文章

      网友评论

          本文标题:dispatch_source_t

          本文链接:https://www.haomeiwen.com/subject/fvzssxtx.html