我尝试使用dispatch_time以600秒的间隔定期递归调用doTask()
。这是我的简单代码:
private func doTask() -> Void {
var interval : NSTimeInterval = someService.getInterval() //it is 600
NSLog("interval = \(interval)"); //Like I said, it is 600, because I see the log
let dispatchTime = dispatch_time(DISPATCH_TIME_NOW, Int64(interval * Double(NSEC_PER_SEC)))
//recursively call doTask() after 600 seconds
dispatch_after(dispatchTime,
GlobalBackgroundQueue,
{self.doTask()}
)
}
这是
GlobalBackgroundQueue
:var GlobalBackgroundQueue: dispatch_queue_t {
return dispatch_get_global_queue(Int(QOS_CLASS_BACKGROUND.value), 0)
}
但是,当我调用
doTask()
函数时,在运行时,doTask()每次调用之间的间隔为15秒。为什么?为什么间隔不是600秒?=====更新=====
我也尝试了NSTimer:
NSTimer.scheduledTimerWithTimeInterval(interval, target: self, selector: "doTask", userInfo: nil, repeats: true)
但是在运行时,doTask()每20秒调用一次。仍然不是600秒。
最佳答案
尝试这个
let delay: UInt64 = 600
let dispatchTime = dispatch_time(DISPATCH_TIME_NOW, Int64(delay * NSEC_PER_SEC))
关于ios - 使用dispatch_time定期执行任务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33369283/