禁用 NSTimer 的正确方法是什么?
我正在编写一个应用程序,其中主视图控制器有几个控制不同事件的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论