计时器因调整窗口大小而延迟

发布于 2024-11-15 18:44:15 字数 153 浏览 3 评论 0原文

我有一个 NSTimer,每 0.x 秒计时一次。我还有一个按钮,可以显示或隐藏控件,从而调整窗口大小。

然而,我注意到,通过单击按钮并调整窗口大小会显着延迟计时器,例如,如果我反复单击调整大小按钮,我的计时器会延迟几秒钟。

有人可以建议我如何解决这个问题吗?

I have a NSTimer who ticks every 0.x seconds. I also have a button that enables to show or hide controls hereby resizing the window.

I noticed however that by clicking the button and resizing the window significantly delays the timer, for example if i repeatedly click the resize button my timer my run several seconds late.

Can anybody advice me on how to fix this?

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

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

发布评论

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

评论(1

逆流 2024-11-22 18:44:15

尝试将其添加到常见的运行循环模式中:

// alloc/init your timer here
[[NSRunLoop currentRunLoop] addTimer:yourTimer forMode:NSRunLoopCommonModes];

Try adding it to the common run loop modes:

// alloc/init your timer here
[[NSRunLoop currentRunLoop] addTimer:yourTimer forMode:NSRunLoopCommonModes];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文