Swift ScheduledTimer滞后?

时间:2019-10-01 20:14:09

标签: swift cocoa timer

我正在尝试制作一个每两秒钟执行一次功能的应用程序。为此,我使用Timer.scheduledTimer函数。 问题在于该函数没有每隔两秒钟执行一次。通常,应用程序开始时的间隔为2秒,但稍后(大约半分钟后),该间隔有时为7秒,有时为13等。

这是我的代码:

import Cocoa

class ViewController: NSViewController {

    @objc func glavno(){

      let date = Date()
      var calendar = Calendar.current
      calendar.timeZone = TimeZone(identifier: "UTC")!              
      let components = calendar.dateComponents([.hour, .year, .minute], from: date)
      let hour = calendar.component(.hour, from: date)
      let minutes = calendar.component(.minute, from: date)
      let seconds = calendar.component(.second, from: date)
      print("\(hour):\(minutes):\(seconds)")

    }

    var timer = Timer()

    override func viewDidLoad() {

        //Load UI
        super.viewDidLoad()

        //Start the task
        timer = Timer.scheduledTimer(timeInterval: 2, target: self, selector: #selector(self.glavno), userInfo: nil, repeats: true)  

    }

    override var representedObject: Any? {
        didSet {
        // Update the view, if already loaded.
        }
    }

}

所以应用程序的功能是什么,它每两秒打印一次时间。 这是我得到的输出(您会看到该函数不会在每个间隔上每两秒执行一次):

20:9:21
20:9:23
20:9:25
20:9:37
20:9:49
20:10:1
20:10:3
20:10:5
20:10:17
20:10:23

我是Swift语言的初学者,有人可以指出正确的方向吗?我还尝试了不使用Timer的情况,但是只使用了带有无限循环(while(true))的函数,并在打印时间后在该循环内休眠了两秒钟。

如果这很重要,我正在运行Swift 5.0.1版。

谢谢!

1 个答案:

答案 0 :(得分:0)

App Nap的原因是:Swift timer is not executing on precise time

这是我为我的应用程序{/ {3}}

修复/禁用应用程序小睡的方法