vote up 0 vote down star
1

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.

flag

3% accept rate
scheduledTimerWithTimeInterval:1 instead of 2? – diciu Aug 20 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 at 11:05

4 Answers

vote up -2 vote down

yeah...

Thanks Jacob H.Hansen.....

link|flag
@sachin, If you want to reply to an individual who has left you comment or answer you should leave a comment not an answer. – teabot Aug 20 at 11:20
1  
@teabot, Sachin's mistake is understandable. You need 50 rep to leave comments. – Will Harris Aug 24 at 7:55
vote up 1 vote down

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|flag
vote up 4 vote down

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|flag
vote up 0 vote down

Thanks for the replay

link|flag

Your Answer

Get an OpenID
or

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