GCD:如何更改计时器火警间隔

dei*_*mus 6 iphone objective-c grand-central-dispatch ipad ios

无论如何,这听起来可能是一个新手问题,我对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);
}
Run Code Online (Sandbox Code Playgroud)

其中someMethod是:

- (void)someMethod
{
    NSLog(@"Thread 1");
}
Run Code Online (Sandbox Code Playgroud)

如何timer在someMethod中更改'fire interval属性?

dei*_*mus 9

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