gpt4 book ai didi

objective-c - NSTimer 导致一些奇怪的延迟

转载 作者:行者123 更新时间:2023-11-29 13:47:38 26 4
gpt4 key购买 nike

好的,我的第一个应用程序是计时器。就在我按照惯例做了 hello world 之后。我使用 NSTimer 类作为我的计时器,我每秒触发一次,然后更改 UILabel 中的文本。现在这一切都很好,除了我的第一次运行。每次我在模拟器中运行该应用程序并启动计时器时,它们在我的最后一秒都有一个奇怪的延迟,它会卡住大约 2 秒然后继续,就好像没有任何问题一样。然后它适用于每一个运行的集合。

这是我设置 NSTimer 的代码:

theTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0) target:self selector:@selector(onTimer) userInfo:nil repeats:YES];

然后在 onTimer 方法中调用 updateLabel

countDownLabel.text = [NSString stringWithFormat:@"%02d:%02d", startMin,startSec];
//Check if sets are complete
if(setCount <= numOfSets)
{
setLabel.text = [NSString stringWithFormat:@"Set %02d of %02d", setCount, numOfSets];
//check if timer is complete
if(startMin <= 0 && startSec <= 0)
{
countDownLabel.textColor = [UIColor greenColor];
//run interval timer when timer is complete
if(intervalBetweenSets <= intervalBetweenSetsSetting)
{
setLabel.text = [NSString stringWithFormat:@"Starting set"];
intervalBetweenSets++;
intervalCounterSec--;
countDownLabel.text = [NSString stringWithFormat:@"00:%02d", intervalCounterSec];
}
else
{
//RESET values on timer label
TimerSettings *myTimer = [TimerSettings sharedManager ];
startMin = myTimer.min;
startSec = myTimer.sec;
intervalBetweenSets = 0;
intervalCounterSec = intervalBetweenSetsSetting+1;
countDownLabel.textColor = [UIColor redColor];
countDownLabel.text = [NSString stringWithFormat:@"%02d:%02d", startMin,startSec];
setLabel.text = [NSString stringWithFormat:@"Set %02d of %02d", setCount, numOfSets];
}
}
else
{
//Actual timer for display
if(startSec == 0)
{
startMin = startMin - 1;
}
startSec = startSec - 1;
if(startSec == -1)
{
startSec = 59;
}
if(startMin <= 0 && startSec < 1)
{
//increment number of completed sets
setCount++;
//play sound when timer completes
if (audioPlayer == nil)
;
else
{
[audioPlayer play];
}
}

countDownLabel.text = [NSString stringWithFormat:@"%02d:%02d", startMin,startSec];
}
}

问题是我不知道这是否是计时器的问题或者它是否与我的逻辑有关,如果对我在做什么有任何不清楚的地方请提出来,我会澄清。

谢谢

最佳答案

如果您正在尝试这样做,则不应使用 NSTimer 来保持时间,NSTimer 在概念上被放入事件提示中,因此只能在您的程序等待来自事件提示的输入时触发。你可以使用 NSTimers 来告诉你字段更新自身的显示,但是要获得耗时量,你应该使用 NSDate 方法或等效的 C 函数。

关于objective-c - NSTimer 导致一些奇怪的延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6646118/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com