我应该能够使用 NSTimer 延迟 2 秒。怎么做呢?
我想使用 NSTimer 产生 2 秒的延迟,如何在程序中初始化计时器?
I want to produce a delay of 2 seconds using NSTimer how to initialize timer in program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这里有多个选项。
如果你只想要 2 秒的延迟,你可以使用 sleep() 函数
或者你可以像这样使用 NSTimer
在你的类中你将有一个定义为的方法
Multiple options here.
If you just want a delay of 2 seconds you could use the sleep() function
Or you may be able to use NSTimer like so
And in your class you would have a method defined as
干得好...
Here you go...
简单答案:[NSThread sleepForTimeInterval:10.0];
Simple answer: [NSThread sleepForTimeInterval:10.0];
请注意,您不应该真正考虑事件驱动的 UI/OS 中的延迟。您应该考虑现在要执行的任务以及以后要执行的任务,并对这些子任务进行编码并适当地安排它们。例如,
您可能希望代码看起来更像:
然后您可以在 methodA 末尾使用 NSTimer 调度 methodB,NSTimer 由任何调用的 methodA 启动,或者最好的选择是通过异步完成例程由 methodA 开始的事情。
Note that you should not really be thinking about delays in an event driven UI/OS. You should thinking about tasks you want to do now, and tasks you want to do later, and code these subtasks and schedule them appropriately. e.g. instead of:
you might want to have code that looks more like:
and you can then schedule methodB with an NSTimer at the end of methodA, an NSTimer started by whatever called methodA, or, the best option, by the asynchronous completion routine of something started by methodA.