在我的iphone中,我想确保在for循环中,在连续迭代之间存在一些延迟。
我该怎么做?
答案 0 :(得分:0)
forloopstart {
[self performSelector:@selector(updateTextLabelWithString:) withObject:@"sleep 5 worked" afterDelay:5.0];
}
- (无效)updateTextLabelWithString:(的NSString *)theString {
NSLog(@"theString is : %@ \n\n",theString);
}