6

我想以编程方式获取应用程序的电池使用情况。iOS 8 提供电池使用监控实用程序,我想知道 Apple 是如何实现此功能的。有没有这方面的公共 API?

我希望我的 iOS 应用程序的电池消耗值以x mAh/min或当前电池状态的x%或任何类似格式表示。

请帮忙。

4

1 回答 1

4

如果您遵循以下代码,您可以这样做

 if (![[UIDevice currentDevice] isBatteryMonitoringEnabled])
 {
   [[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
 }
 NSLog(@"battery : %f", [[UIDevice currentDevice] batteryLevel]);

您的问题也有一些链接 - 如何在 iOS 上以 1% 的粒度获取实时电池电量

于 2015-05-13T10:21:44.593 回答