如何以编程方式确定通过USB连接的Iphone的电池运行状况

时间:2018-01-20 11:55:56

标签: ios iphone macos usb battery

== 更新澄清 ==

感谢您阅读本文!

名为椰子电池的 MacOS应用程序能够确定以下信息:

  • 目前的总电池容量
  • 设计能力(磨损前的原始容量)

通过USB连接的iPhone。

我想知道他们是如何做到的,因为我无法在控制台或系统分析器中找到这些信息。

有人有任何想法吗?

最好,

Fabian

1 个答案:

答案 0 :(得分:-1)

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