我的项目有一个计时器,每次减1秒钟。但是,如果计数器第二次开始工作,它会减少2秒,第三次减少3秒等等。我应该怎么做才能一直减少1秒?
-(void)viewDidAppear:(BOOL)animated {
count=15; //timer set as 15 seconds
[NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(updateCounter:)userInfo:nil repeats:YES]; //for decrementing timer
}
- (void)updateCounter:(NSTimer *)theTimer {
count -= 1;
NSString *s = [[NSString alloc] initWithFormat:@"%d", count];
if(count==0) // alert for time expiry
{
alert = [[UIAlertView alloc] initWithTitle:@"Time Out!!" message:@"Your time is expired." delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert show];
self.timer.hidden=YES;
[self dismissModalViewControllerAnimated:YES];
}
else {
self.timer.text = s;
}
[s release];
}
答案 0 :(得分:1)
根据您发布的内容,您创建了多个计时器,而不是停止其中任何计时器。所以经过3次,你每秒有3个定时器。
至少,当计时器达到零时,你想让它失效:
[theTimer invalidate]
但您可能还想考虑保留您创建的计时器(在@property中),这样如果用户在计数器实际变为零之前以其他方式离开此视图,您可以使其无效并释放它。
希望有所帮助。
答案 1 :(得分:0)
修改
(正如我发布的那样,我注意到你已经知道接受了上述答案,似乎已经从@Firoze Lafeer那里删除了你的“它不起作用”的评论。但我会留在这里任何方式。)
将以下代码作为测试运行我不会解决您的问题。即使我没有失效,我在日志中也只有多个输出。
不要通过查看应用中的文本字段来查看正在发生的事情。尝试并使用我在下面的日志记录,看看是否能让您更好地了解正在发生的事情。
-(IBAction)runTimer:(id)sender { // attached to a button
[self invalidateTimer];
count=15; //timer set as 15 seconds
//for decrementing timer
countimer = [NSTimer scheduledTimerWithTimeInterval:1.0f
target:self
selector:@selector(updateCounter:)
userInfo:nil
repeats:YES];
}
-(void)updateCounter:(NSTimer *)theTimer {
count -= 1;
NSLog (@"count =@%d", count);
if(count==0) // alert for time expiry
{
[self invalidateTimer];
}
}
-(void)invalidateTimer {
if ([countimer isValid]) {
[countimer invalidate];
NSLog(@"countimer invalidated ");
countimer = nil;
}
}