禁用 NSTimer 的正确方法是什么?

发布于 2024-12-20 13:29:57 字数 491 浏览 2 评论 0原文

我正在编写一个应用程序,其中主视图控制器有几个控制不同事件的 NSTimer。除了一些奇怪的情况外,当我从导航堆栈中弹出这个主视图控制器时,计时器似乎没有被禁用,这工作得很好。

我的问题是:使 NSTimer 无效或禁用以便它不会再次被调用的正确方法是什么?

现在,我实例化一个 NSTimer,如下所示:

alertViewTimer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(alertTimer) userInfo:nil repeats:YES];

我使用此宏使 NSTimer 无效:

#define TimerInvalidateAndNil(A) \
if(A != nil) \
{\
if([A isValid])\
{\
[A invalidate]; \
}\
A = nil; \
}

I am writing an app where the main view controller has several NSTimers that control different events. This works well except for a few oddball cases where the timers don't seem to get disabled when I pop this main view controller off my navigation stack.

My question is this: what is the proper way to invalidate or disable an NSTimer so that it doesn't get called again?

Right now, I instantiate an NSTimer like this:

alertViewTimer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(alertTimer) userInfo:nil repeats:YES];

And I use this macro to invalidate the NSTimer:

#define TimerInvalidateAndNil(A) \
if(A != nil) \
{\
if([A isValid])\
{\
[A invalidate]; \
}\
A = nil; \
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文