当我的应用程序在后台/死机时,batteryLevelDidChangeNotification是否会唤醒我的应用程序以获取通知并运行代码? 还是仅当我的应用程序位于前台时才起作用?
Apple文档中对此一无所知
使用诸如
NotificationCenter.default.addObserver(self, selector: #selector(batteryLevelDidChange), name: UIDevice.batteryLevelDidChangeNotification, object: nil)
电池电量级别更改功能是否仅在应用程序处于前台时运行?