我想实现一个for循环,这样对于每次迭代,它会等到一秒钟才会进入下一个循环。
for (NSUInteger i = 0; i <=3; i++) {
//...do something
//...wait one second
}
答案 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];
}
});
}