对于具有定时迭代的循环 - Objective-C

时间:2015-07-12 18:04:23

标签: objective-c iteration

我想实现一个for循环,这样对于每次迭代,它会等到一秒钟才会进入下一个循环。

for (NSUInteger i = 0; i <=3; i++) {
   //...do something
   //...wait one second
}

1 个答案:

答案 0 :(得分:5)

您可以使用dispatch_after来避免在等待时阻止主线程:

- (void)loopAndWait:(NSUInteger)currentIndex maxIndex:(NSUInteger)maxIndex {
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
        // do stuff
        NSUInteger nextIndex = currentIndex + 1;
        if (nextIndex <= maxIndex) {
            [self loopAndWait:nextIndex maxIndex:maxIndex];
        }
    });
}