在我的应用程序中,我让用户设置倒数计时器UIDatePicker's
CountDownTimer
。
我有一个UILabel
显示计数时间当用户从 CountDownTimer 中选择时间时,我想显示在 CoutDownTimer 中选择的用户的计数,如下图所示。
CountDownTimer
所以我使用以下代码检索用户选择的计数时间
self.dateFormatter = [[NSDateFormatter alloc] init];
[self.dateFormatter setDateFormat:@"HH:mm:ss"];
self.sleepTimer = [NSTimer timerWithTimeInterval:1.00 target:self selector:@selector(timerFired:) userInfo:nil repeats:NO];
当它到达 00:00 时,我想触发一个事件。
我不知道如何减少每秒倒计时。
谢谢你的帮助。