6

无论如何,这听起来可能是一个新手问题,我对 GCD 很陌生

我有以下代码:

int interval = 2;
int leeway = 0;

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);
if (timer) {
    dispatch_source_set_timer(timer, dispatch_walltime(DISPATCH_TIME_NOW, NSEC_PER_SEC * interval), interval * NSEC_PER_SEC, leeway);
    dispatch_source_set_event_handler(timer, ^{
        [self someMethod];
    });
    dispatch_resume(timer);
}

其中 someMethod 是:

- (void)someMethod
{
    NSLog(@"Thread 1");
}

如何更改timersomeMethod 中的触发间隔属性?

4

1 回答 1

9

我自己得到了答案,dispatch_source_set_timer用新的间隔值调用就足够了

于 2012-06-17T10:31:04.540 回答