如何暂停objective-c一段时间不到一秒钟

时间:2014-09-09 08:49:52

标签: objective-c floating-point integer sleep

我正在 Xcode 5.1.1 objective-c 中编写应用。 我想暂停程序0.1秒。 要暂停一个程序,我通常使用这样的东西:

sleep(1);

但“睡眠”只需要一个整数。

问题:是否有相当于睡眠的浮标?

1 个答案:

答案 0 :(得分:4)

使用以下代码。将您的时间转换为微秒。

usleep(10000); //Sleep Time 0.1 seconds
usleep(1000000);//Sleep Time 1 second.

[NSThread sleepForTimeInterval:0.1f];

此致 阿米特