Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if NSTimer has been already invalidated

I have a NSTimer object that I need to invalidate if a user taps on a button or if they exit a view.

So I have:

[myNSTimer invalidate];

inside my button handler and inside viewWillDisappear. If user taps on a button and then exists a view the app throws an exception because myNSTimer has already been invalidated. What I need to do in the viewWillDisappear method is check if the myNSTimer has been invalidated or not. How do I do that?

I've tried:

if(myNSTimer != nil)
  [myNSTimer invalidate];

but that didn't work.

like image 830
subjective-c Avatar asked Dec 15 '08 12:12

subjective-c


2 Answers

Once you invalidate the timer, simply call release on it (assuming you've retained the reference you're holding on to) and then nil out your reference. That way when you exit the view, trying to invalidate the timer a second time will just call that method on nil instead, which does nothing.

Alternatively, you can use -[NSTimer isValid] to check if it's valid before invalidating, but there's really no reason to hold onto your reference after invalidating it the first time anyway. Also, if your real problem is that you haven't retained your reference and so the first -invalidate actually leaves you with a reference pointing at a released object, then calling -isValid won't help anyway.

like image 74
Lily Ballard Avatar answered Oct 15 '22 02:10

Lily Ballard


What I usually do is nil-out the member variable holding the timer, either when it fires, or when I invalidate it. Then you can just do:

[myNSTimer invalidate]; 
myNSTimer = nil;

and it'll do the right thing.

like image 42
Ben Gottlieb Avatar answered Oct 15 '22 02:10

Ben Gottlieb