swift ios – 如何从AppDelegate在ViewController中运行函数

前端之家收集整理的这篇文章主要介绍了swift ios – 如何从AppDelegate在ViewController中运行函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用AppDelegate在某些ViewController中运行一个函数
func applicationDidBecomeActive(_ application: UIApplication) {
        ViewController().grabData()
}

但不知何故,当应用程序从后台进入应用程序后变为活动状态时,该功能似乎根本无法运行.

功能看起来像这样

func grabData() {
        self._DATASERVICE_GET_STATS(completion: { (int) -> () in
            if int == 0 {
                print("Nothing")
            } else {
                print(int)

                for (_,data) in self.userDataArray.enumerated() {
                    let number = Double(data["wage"]!)
                    let x = number!/3600
                    let z = Double(x * Double(int))
                    self.money += z
                    let y = Double(round(1000*self.money)/1000)

                    self.checkInButtonLabel.text = "\(y) KR"
                }

                self.startCounting()
                self.workingStatus = 1
            }
        })
    }

并使用此var

var money: Double = 0.000

我错过了什么?

谢谢!

ViewController().grabData()将创建一个ViewController的新实例并调用函数.然后..由于视图控制器未被使用,它将被垃圾收集/从内存中删除.您需要在正在使用的实际视图控制器上调用方法.不是它的新实例.

最好的选择是监听iOS提供的UIApplicationDidBecomeActive通知.

NotificationCenter.default.addObserver(
    self,selector: #selector(grabData),name: NSNotification.Name.UIApplicationDidBecomeActive,object: nil)

确保你也删除了观察者,这通常是以deinit方法完成的

deinit() {
    NotificationCenter.default.removeObserver(self)
}
原文链接:https://www.f2er.com/swift/319967.html

猜你在找的Swift相关文章