是否可以从 iOS 应用程序以编程方式读取手机电池百分比?
Best Answer-推荐答案 strong>
你可以使用下面的代码。
if (![[UIDevice currentDevice] isBatteryMonitoringEnabled])
{
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
}
NSLog(@"battery : %f", [[UIDevice currentDevice] batteryLevel]);
关于iOS:是否可以以编程方式读取手机电池百分比?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38785842/
|