我正在使用 Obc C 在 Xcodes 中创建一个倒数计时器。我是这方面的新手,需要一些计时器帮助,它会从你输入的任何时间开始倒计时。
现在我的代码如下所示:
-(void) timerRun {
secoundCount = secoundCount - 1;
int minuts = secoundCount / 60;
int seconds = secoundCount - (minuts * 60);
NSString *timerOutput = [NSString stringWithFormat:@"%2d:%.2d", minuts, seconds];
countdownlable.text = timerOutput;
只要从 99 分钟或更短的时间开始倒计时,这个倒计时就可以完美地找到。我想再有一个 int 几个小时,但是当我这样做时出现问题并出现错误。
你能解释一下我如何在这个计数器上再加一个整数作为“小时”吗
我尝试了以下方法,但它不起作用:
-(void) timerRun {
secoundCount = secondCount - 1;
int hours = secondCount / 60;
int minuts = secondCount / 60;
int seconds = secondCount - (minuts * 60);
NSString *timerOutput = [NSString stringWithFormat:@"%1d:%2d:%.2d", hours, minuts, seconds];
countdownlable.text = timerOutput;
提前致谢