iOS 定时器分辨率为 1 毫秒

发布于 2024-11-28 01:53:59 字数 178 浏览 4 评论 0原文

在我的应用程序中,我有一个需要在屏幕上移动的对象(汽车图像)。 如果可能的话,我需要每 1 毫秒安排一次 myFunction。 我阅读了苹果文档,了解到 NSTimer 分辨率限制为 50-100 毫秒,这对于我的用例(在屏幕上快速移动对象)来说是不够的。

NSTimer 对象的替代品是什么?

提前致谢。

In my app I have an object(Car image) that needs to move on the screen.
I need to schedule myFunction every 1ms if possible.
I read apple documentation and I understood that NSTimer resolution is limited to 50-100ms, which is not enough for my use case (moving an object quickly on the screen).

What could be the alternatives to the NSTimer object?

Thanks in advance.

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

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

发布评论

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

评论(1

关于从前 2024-12-05 01:53:59

我认为你可能试图以太快的速度展示事物。屏幕刷新速度不那么快,因此以该频率触发计时器不会有帮助。

对于时序图形,请查看 CADisplayLink< /a> 当屏幕需要刷新时调用选择器的类。即基于显示刷新率的计时器。

I think you may be trying to show things at too fine a time rate. The screen doesn't refresh that fast, so having a timer fire with that frequency isn't going to help.

For timing graphics have a look at the CADisplayLink class which calls a selector when the screen needs to be refreshed. i.e. A timer that is based on the display refresh rate.

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