timer使用代码类似如下:
dispatch_source_t timer;
timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0));
dispatch_source_set_timer(timer,
dispatch_time(DISPATCH_TIME_NOW, 5*NSEC_PER_SEC),
5*NSEC_PER_SEC,
0);
dispatch_source_set_event_handler(timer, ^{
dispatch_suspend(timer);
});
dispatch_resume(timer);注意:
1 这个timer是使用引用计数的,千万别多线程共用一个timer,容易操作出问题,随机crash;
2 这个timer是使用引用计数的, dispatch_resume不能调用多了,调2次会crash;
3 这个timer是使用引用计数的,dispatch_suspend不能调多了,调多了,计数会有问题;
4 前后台相关;
本文介绍了一个基于 DISPATCH 框架的定时器实现方法,并详细解释了如何创建和配置 DISPATCH 类型的定时器。同时,文章强调了在多线程环境下使用定时器时需要注意的问题,例如避免计数错误和崩溃等问题。
501

被折叠的 条评论
为什么被折叠?



