我想设置时间倒计时,使用NSTimer
从 20 分钟开始然后经过 19 分钟、18 分钟等(只有分钟而不是秒)这个经过的时间显示在文本文件中,请帮助。
提前致谢
我想设置时间倒计时,使用NSTimer
从 20 分钟开始然后经过 19 分钟、18 分钟等(只有分钟而不是秒)这个经过的时间显示在文本文件中,请帮助。
提前致谢
您将要创建一个如下所示的计时器:
NSTimer *myTimer = [NSTimer scheduledTimerWithTimeInterval:60 target: self selector:@selector(time:) userInfo: nil repeats: true];
//the timer takes seconds, so by feeding it 60, it will tick every minute
然后你的time:
函数必须如下所示:
- (void)time:(NSTimer *)timerObject{
//do whatever needs to be done every minute, like updating your UI
//and subtracting from your counter variable
}
(您不必使用 timerObject)