您好我有基于导航的应用程序,其中一个视图中有一个计时器。(查看方式:A、B 和 C)
当我启动计时器时,我在 C 中有计时器,它工作正常,但是当我推回任何视图并再次来到视图 C 时,它没有显示更新的值。
这是我的代码。
应用代理
-(int)updateTimer
{
timer_value--;
return timer_value;
}
查看“C”代码
- (IBAction)buttonClick:(id)sender {
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(update) userInfo:nil repeats:YES];
}
-(void)update
{
MFAppDelegate *appDelegate = (MFAppDelegate *) [[UIApplication sharedApplication]delegate];
int Time=[appDelegate updateTimer];
int minute=Time/60;
int second=Time-(minute*60);
NSString *strValue=[NSString stringWithFormat:@"%d:%d",minute,second];
NSLog(@"%@",self.lbl_timer.text);
[self.lbl_timer setText:strValue];
}
每次都调用更新函数,并且标签文本的 NSlog 显示正确。
有什么我做错了吗?请帮帮我。