gpt4 book ai didi

用于在后台检查电池电量的 iOS 应用程序

转载 作者:可可西里 更新时间:2023-11-01 06:15:36 26 4
gpt4 key购买 nike

是否可以在我们的应用程序处于后台时检查电池电量?

目前我正在开发一个 iOS 应用程序,当电池电量达到一定水平时,用户会收到警报。

我在 google/stake overflow 上搜索过。但没有找到有用的。当应用程序处于前台状态时,我可以确定电池电量。但是我们都知道苹果不允许应用程序在后台运行。

所以我的问题是即使我的应用程序在后台,我如何才能获得当前的电池电量事件。

这是类似的应用程序。它是一个付费应用程序。但是通过查看屏幕截图,您会明白我想说的意思。

https://itunes.apple.com/it/app/battery-alert!/id416283462?mt=8

最佳答案

UIDevice *device = [UIDevice currentDevice];
device.batteryMonitoringEnabled = YES;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(batteryChanged:) name:@"UIDeviceBatteryLevelDidChangeNotification" object:device];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(batteryChanged:) name:@"UIDeviceBatteryStateDidChangeNotification" object:device];

// Your notification handler
- (void)batteryChanged:(NSNotification *)notification
{
UIDevice *device = [UIDevice currentDevice];
NSLog(@"state: %i | charge: %f", device.batteryState, device.batteryLevel);
}

检查这段代码...

关于用于在后台检查电池电量的 iOS 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19108379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com