Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to Pause/Play NSTimer?

I have three buttons start stop and pause..My start and stop button is working fine with the below code..but when press Pause it pause the timer..but when again i Press start.IT continues from the new added time ...not from the pause time....

supoose i pause at 5 second of start and wait for 5 sec then press start...it should display 5 ...but displaying 10..

because I have not mentioned (timer:) in timer!=nill of start... how it will be add..

I have problems:

  1. Pause not working.
-(void)start:(NSTimer *)timer
{
  if(_timer==nil)
  {
    startDate =[NSDate date];

    _timer=[NSTimer scheduledTimerWithTimeInterval:0.25 target:self selector:@selector(timer:) userInfo:nil repeats:YES];
  }

  if(_timer!=nil)
  { 
    float pauseTime = -1*[pauseStart timeIntervalSinceNow];

    [_timer setFireDate:[previousFireDate initWithTimeInterval:pauseTime sinceDate:previousFireDate]];
  }

}

-(void)timer:(NSTimer *)timer
{
  NSInteger secondsSinceStart = (NSInteger)[[NSDate date] timeIntervalSinceDate:startDate];

  NSInteger seconds = secondsSinceStart % 60;
  NSInteger minutes = (secondsSinceStart / 60) % 60;
  NSInteger hours = secondsSinceStart / (60 * 60);
  NSString *result = nil;
  if (hours > 0) 
  {
    result = [NSString stringWithFormat:@"%02d:%02d:%02d", hours, minutes, seconds];
  }
  else 
  {
    result = [NSString stringWithFormat:@"%02d:%02d", minutes, seconds];        
  }

  label.text=result;

  NSLog(@"time interval -> %@",result);
}

-(void)stop
{
  if(_timer!=nil)
  {
    startDate=nil;

    [_timer invalidate];
    _timer = nil; 
  }
}

-(void)pause:(NSTimer *)timer
{
  pauseStart = [NSDate dateWithTimeIntervalSinceNow:0];

  previousFireDate = [_timer fireDate];

  [_timer setFireDate:[NSDate distantFuture]];
}
share|improve this question

marked as duplicate by Midhun MP, Janak Nirmal, ACB, Explosion Pills, Gagravarr Dec 21 '12 at 6:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

please Visit this two links:- for your solution:

Mostly stoping NSTimer by using [timername Invalidate];

How to Pause/Play NSTimer?

Stopwatch using NSTimer incorrectly includes paused time in display

EDIT

and also visit my answer at this Question :-

How to Save NSTimer?

share|improve this answer
ya same thing I ve done in my code...still one answer is not..how to calculate time between startstop – Christien Dec 20 '12 at 8:27
you alredy star from 0 and when stope the timer you get time as a Result my frnd.. – Nitin Gohel Dec 20 '12 at 8:41
check my updated Answer please – Nitin Gohel Dec 20 '12 at 8:44
ya this works...this pause the timer..but when I again Start it would not start from pausestart...its keep on counting in backside...and displays the updated time not pause time – Christien Dec 20 '12 at 8:53
suppose i pause at 5 second and wait for 5 second then press start ..it displays me 10 sec not 5... – Christien Dec 20 '12 at 8:54
show 2 more comments
-(void)pause:(NSTimer *)timer
{
  pauseStart = [NSDate dateWithTimeIntervalSinceNow:0];

  previousFireDate = [_timer fireDate];

  //[timer setFireDate:[NSDate distantFuture]];
  [_timer setFireDate:[NSDate distantFuture]];
}
share|improve this answer
ya this works...this pause the timer..but when I again Start it would not start from pausestart...its keep on counting in backside...and displays the updated time not pause time – Christien Dec 20 '12 at 8:51
suppose i pause at 5 second and wait for 5 second then press start ..it displays me 10 sec not 5... – Christien Dec 20 '12 at 8:52
this is the only problem left now – Christien Dec 20 '12 at 9:14
i think i got the problem...bcz when i pause...then I am starting again from the start key..and have not given (timer:) in start for pause – Christien Dec 20 '12 at 9:42

Here is the code that I used for a timer:

I store all the components for the time, in my (singleton) class, the hour, minute, seconds value.

And, I simply "invalidate" the timer in the "pause" method, AND I store the values.

See, if this helps.

-(void) startTimer
{
    NSLog(@"Values for timer: %d H, %d M, %d S", self.hours, self.minutes, self.seconds);

    _timer = [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(updateTimer) userInfo:nil repeats:YES];
}

-(void) pauseTimer
{
    if(_timer)
    {
        [_timer invalidate];
    }

    _timer = nil;

    self.hour = hourValue;
    self.minute = minuteValue;
    self.second = secondsValue;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.