当应用程序处于后台状态时暂停计时器 Swift

2023-11-26

我的 ViewController.swift

func startTimer() {
    timer = NSTimer().scheduleTimerWithTimerInvterval(1.0,target: self,selctor: Selector("couting"),userinfo: nil, repeats: true)
}

func pauseTimer() {
    timer.invalidate()
    println("pausing timer")
}

这是 appDelegate.swift

func applicateWillResignActive(application: UIApplication) {
    viewController().pauseTimer()
    println("closing app")
}

正在打印暂停计时器并关闭应用程序但当我再次打开时,我发现它从未暂停过。我该如何正确地做呢?


您必须设置一个观察者来侦听应用程序何时进入后台。在 ViewController viewDidLoad() 方法中添加以下行。

NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("myObserverMethod:"), name:UIApplicationDidEnterBackgroundNotification, object: nil)

添加以下功能以接收通知。

func myObserverMethod(notification : NSNotification) {
    println("Observer method called")

    //You may call your action method here, when the application did enter background.
    //ie., self.pauseTimer() in your case.
}

快乐编码!

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

当应用程序处于后台状态时暂停计时器 Swift 的相关文章

随机推荐