我在我的应用程序中实现了以下功能。
for(i=0;!stopThroughButtons && i<totalMovements;i++){
[NSThread detachNewThreadSelector:@selector(moveNeedle) toTarget:self withObject:nil];
sleep(0.3);
}
这sleep
是一个带有unsigned int
类型参数的函数。
睡眠方法使用秒来睡眠。
我想以毫秒为单位给出睡眠时间。
有哪个最好的替代品可用?