Objective-c 中是否有 setTimeout (类似)

发布于 2024-10-01 19:43:06 字数 98 浏览 4 评论 0原文

Objective-C 中是否有类似 JavaScript 中的 setTimeout 函数?我不想要睡眠功能。

我想在一段时间过去后触发一条“消息”,但不锁定设备。

Is there a similar setTimeout function in objective-c like in javascript? I dont want a sleep function.

I want to fire a "message" after a period of time gone by but no locking up the device.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

橘和柠 2024-10-08 19:43:06

尝试 NSTimer

Try NSTimer.

今天小雨转甜 2024-10-08 19:43:06

正如卡尔文指出的,你可以使用 NSTimer 类。

作为替代方案,您可以使用 performSelector:withObject:afterDelay: 方法在特定延迟后安排方法调用(请注意,不能保证延迟将完全是您指定的 - 它只是不会小于该延迟价值)

As Calvin points you can use NSTimer class.

As an alternative you can use performSelector:withObject:afterDelay: method to schedule method call after specific delay (note that it is not guaranteed that delay will be exactly you specified - it just will be not less than that value)

浅浅 2024-10-08 19:43:06

See NSObject's performSelector:withObject:afterDelay:. You can also use NSTimer — it's particularly useful for mimicking setInterval(). And to execute arbitrary code instead of just sending a message, see Grand Central Dispatch's dispatch_after.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文