Blog coding and discussion of coding about JavaScript, PHP, CGI, general web building etc.

Sunday, April 10, 2016

NSTimer doesn't stop

NSTimer doesn't stop


I've got a timer which fires when the viewWillAppear method is being called and invalidates when the viewDidDisappear method is being called. But after a certain amount of switching between views the timer continues firing even after it was invalidated. What's the problem?

Here is my code:

NSTimer *timer;    - (void)viewWillAppear:(BOOL)animated {      [super viewWillAppear:animated];      timer = [NSTimer scheduledTimerWithTimeInterval: 0.2f                       target: self                       selector:@selector( timerAction )                       userInfo:nil                       repeats:YES];  }    -(void)viewDidDisappear:(BOOL)animated {      [super viewDidDisappear:animated];      [timer invalidate];      timer = nil;  }    -(void) timerAction  {      NSLog(@"timerAction");  }  

Answer by rpetrich for NSTimer doesn't stop


You have forgotten to release the timer in viewWillDisappear:

- (void)viewDidDisappear:(BOOL)animated  {      [super viewDidDisappear:animated];      [timer invalidate];      [timer release];      timer = nil;  }  

This shouldn't cause the timer to keep firing though...

Answer by Rhythmic Fistman for NSTimer doesn't stop


Of invalidate the doco says

"The run loop removes and releases the timer, either just before the invalidate method returns or at some later point."

I suppose yours is getting removed at some later point.

Answer by lostInTransit for NSTimer doesn't stop


A method called by a timer should have the definition

- (void)methodName:(NSTimer *)aTimer;  

This way the method has the instance of timer which was fired. The way you are doing it, the method will not know whether the timer was invalidated or not.

Try changing your timer initialization to

timer = [NSTimer scheduledTimerWithTimeInterval: 0.2f target: self selector:@selector(timerAction:) userInfo:nil repeats:YES]  

and the method to

-(void) timerAction:(NSTimer *)aTimer{...}  

Hope that helps

Answer by Ben Gotow for NSTimer doesn't stop


This may not be the issue, but you need to retain the reference to timer that is returned from scheduledTimerWithInterval:. Without doing this, your pointer to the timer might be invalid by the time you go to stop it.

- (void)viewWillAppear:(BOOL)animated  {      [super viewWillAppear:animated];      timer = [[NSTimer scheduledTimerWithTimeInterval:0.2f target:self selector:@selector(timerAction) userInfo:nil repeats:YES] retain];  }    - (void)viewDidDisappear:(BOOL)animated  {      [timer invalidate];      [timer release];      timer = nil;      [super viewDidDisappear:animated];  }    - (void)dealloc  {      [timer invalidate];      [timer release];      timer = nil;      [super dealloc];  }  

Also, try setting a breakpoint in viewDidDisappear and make sure it's getting called!

Answer by Ilya Suzdalnitski for NSTimer doesn't stop


I should have been keeping a link to the timer by retaining it. :) I've asked this question 5 months ago, and it's amazing, how much more experience I acquired. :)

timer = [ [NSTimer scheduledTimerWithTimeInterval: ...] retain];  ...  ...  [timer invalidate];  [timer release];  

Answer by Bruno for NSTimer doesn't stop


I had the same problem.

I can't dealloc my instance if the timer is still running, so I have to stop it before calling :

- (void)stopTimer  {      [timer invalidate];      [timer release];      timer = nil;  }  

After calling this method my timer really stop

Answer by iphonemaclover for NSTimer doesn't stop


**In .h class**    @interface   {  NSTimer * theTimer;    }      **in .m class**    //put this code where you want to calling the NSTimer function            theTimer = [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(updateCounter:) userInfo:nil repeats:YES];        - (void)updateCounter:(NSTimer *)theTimer   {       // write your code here for counter update     }      // put this code to Stop timer:        [theTimer invalidate];      theTimer = nil;  

Answer by Mona for NSTimer doesn't stop


This is an absolute solution. None of the ones above worked for me, so I did this,

where you want to start the timer,

[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerMethod) userInfo:nil repeats:NO];  

The method that the timer calls,

-(void)timerMethod  {      // do what you need to do        if (needs to be called again) {            [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerMethod) userInfo:nil repeats:NO];              }  }  

hope this helps,

Answer by Matjan for NSTimer doesn't stop


- (void)viewWillAppear:(BOOL)animated gets called again.

In fact it gets called every time you switch views or after you dismiss a modal view. Basically any time your view actually reappears on screen, not just the first time.

So in this case the timer gets restarted, even though is was invalidated before.

Answer by Terry for NSTimer doesn't stop


After creating your timer just register it to run in NSRunLoopCommonModes:

[[NSRunLoop currentRunLoop] addTimer:myTimer forMode:NSRunLoopCommonModes];

Then invalidate method will work.

Answer by Habib Ali for NSTimer doesn't stop


This works for me

dispatch_async(dispatch_get_main_queue(), ^{      [timer invalidate];  });  


Fatal error: Call to a member function getElementsByTagName() on a non-object in D:\XAMPP INSTALLASTION\xampp\htdocs\endunpratama9i\www-stackoverflow-info-proses.php on line 72

0 comments:

Post a Comment

Popular Posts

Powered by Blogger.