gpt4 book ai didi

ios scheduledTimerWithTimeInterval 时间量

转载 作者:可可西里 更新时间:2023-11-01 03:52:16 24 4
gpt4 key购买 nike

我想使用 scheduledTimerWithTimeInterval 在一定时间内执行周期性任务,比如一小时。但是我如何在我的代码上实现。这是我的代码:

timer = [NSTimer scheduledTimerWithTimeInterval: 0.1
target: self
selector: @selector(doSomething:)
userInfo: nil
repeats: YES];

最佳答案

让我们假设一分钟。

这是一个简单的场景,

int remainingCounts;
NSTimer *timer;

timer = [NSTimer scheduledTimerWithTimeInterval:1 target:(self) selector:@selector(countDown) userInfo:nil repeats:YES];
remainingCounts = 60; // int remainingCounts ;...

每秒调用一次方法。

-(void)countDown {
NSLog(@"%d", remainingCounts);
// Do Your stuff......
if (--remainingCounts == 0) {
//[self dismissViewControllerAnimated:YES completion:nil];
[timer invalidate];
}
}

关于ios scheduledTimerWithTimeInterval 时间量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17225164/

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