up vote 0 down vote favorite
1
share [g+] share [fb]

I am using this code:

timer = [NSTimer scheduledTimerWithTimeInterval:2
                                         target:self
                                       selector:@selector(update)
                                       userInfo:nil
                                        repeats:YES];
...

-(void)update {
    NSDate *date = [NSDate date];
    NSString *Currentdate = [date descriptionWithCalendarFormat:@"%b %d, %Y %I:%M:%S %p" 
                                                       timeZone:nil
                                                         locale:nil];
    lbl.text = Currentdate;
}

It works fine but I want to change timer interval from 2 seconds to 1 second at run time. How can I do this?

Thanks in advance.

link|improve this question
scheduledTimerWithTimeInterval:1 instead of 2? – diciu Aug 20 '09 at 11:03
I think he wants to know how to change the interval for the timer after it has been created? – Jacob H. Hansen Aug 20 '09 at 11:05
feedback

2 Answers

You can't change a timer interval after it's been created.

// You have to invalidate it...be careful, 
// this releases it and will crash if done to an already invalidated timer

if (self.timer != nil) {
	[self.timer invalidate];
	self.timer = nil;


//... then declare a new one with the different interval.

timer = [NSTimer scheduledTimerWithTimeInterval:newInterval
                                     target:self
                                   selector:@selector(update)
                                   userInfo:nil
                                    repeats:YES];
}
link|improve this answer
feedback

Just invalidate the old timer and create new. I don’t think NSTimer supports changing the time interval, it would be an extra cruft both in the interface and the implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown