NSTimer 问题 - 使用单一函数停止不同的计时器

发布于 2024-10-12 23:39:24 字数 382 浏览 4 评论 0原文

我正在创建一个应用程序,需要使用大约 20 个不同的计时器。

但所有计时器都将在运行时通过调用某个函数来创建。

所有定时器可能有不同的定时器间隔,并且所有定时器都有不同的计数器,每过 1 分钟就会减 1。

现在,当计数器变为 0 时,计时器将停止。但在我的应用程序中,所有计时器都有不同的计数器值,我想使用单个函数按时间间隔停止不同的计时器。

我知道我们可以创建不同的计时器,并通过向它们各自的计时器函数提供选择器值,我们可以通过以下方式停止计时器:我不知道一次有多少个计时器正在运行,如果我确实停止了一个计时器一次,它将导致所有计时器停止并且功能无法正常显示。

请通过提供任何逻辑或示例来帮助我如何在不同的时间间隔使用单个函数停止多个计时器。

提前致谢

I am creating an application in that I need to use about 20 different Timers.

But all the timers are going to be created at run time, by calling some function.

All the timers might having different timer interval and all timer do have different counters that will be reduced by one with passing of 1 minute.

Now when the counter will become 0 the timer will be stopped. But in my application all timers have different counter values and I want to stop different timers at it's time interval using a single function.

I know that we can create different timers and by providing the selector values to their respective timer functions , we can stop the timer by I don't have idea that how many timers are running at a time , and if I do stop a single timer at a time then it will lead to stop all the timers and the functionality is not showing properly.

Please help me by providing any logic or samples How to stop multiple timers using single function at different time interval.

thanks in advance

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

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

发布评论

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

评论(1

古镇旧梦 2024-10-19 23:39:24

我认为您可能需要重新考虑您的软件设计。您可以像平常一样调用您的方法:

[self method];

然后在每个方法的末尾,执行以下操作:

[self performSelector:@selector(method) withObject:nil afterDelay:(1000)];

这将创建一个循环。然后,您可以增加一个整数,并在计数器达到 0 时执行其他操作。您将能够更有效地管理代码。在某些情况下,您可能仍然需要计时器,但这肯定会比您计划使用的 20 个计时器更有效。

I think you may want to reconsider your software design. You can call your method as normal:

[self method];

And then at the end of each method, do the following:

[self performSelector:@selector(method) withObject:nil afterDelay:(1000)];

This will create a loop. You can then increment an integer and do something else when that counter reaches 0. You'll be able to manage your code much more effectively. You may still need timers for some situations, but this will definitely be more efficient than the 20 timers you were planning on using.

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