如何在for循环中添加延迟执行连续迭代?

时间:2011-06-25 12:30:34

标签: iphone objective-c multithreading cocoa-touch for-loop

在我的iphone中,我想确保在for循环中,在连续迭代之间存在一些延迟。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

forloopstart {

[self performSelector:@selector(updateTextLabelWithString:) withObject:@"sleep 5 worked" afterDelay:5.0];

}

- (无效)updateTextLabelWithString:(的NSString *)theString {

NSLog(@"theString is : %@ \n\n",theString);

}