這裏是我的代碼:如何等待while循環?
float interval = 0.03;
while (interval > 0.005) {
timer = [NSTimer scheduledTimerWithTimeInterval:interval target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
NSLog(@"%f", interval);
interval = interval - 0.005;
}
我怎樣才能讓while循環每次循環後等待的時間具體數額?我一直在尋找像sleep或者performSelector這樣的東西:withObject:afterDelay但是他們既不工作也不知道如何使用它們......有些幫助嗎?
'sleep'? 'usleep'? '[NSThread sleepForTimeInterval:]'?拿你的選擇。 – 2013-03-16 14:55:25
@HinataHyuga究竟應該在那裏做什麼評論?我沒有看到它的相關性。 – 2013-03-16 14:56:04
睡覺,睡覺,另一個不工作,因爲它暫停所有的應用程序,直到完成時間...我不希望發生這種情況,我想在減少間隔後等待5秒。 – 2013-03-16 15:00:03