是否可以从 iOS 应用程序以编程方式读取手机电池百分比?
你可以使用下面的代码。
if (![[UIDevice currentDevice] isBatteryMonitoringEnabled])
{
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
}
NSLog(@"battery : %f", [[UIDevice currentDevice] batteryLevel]);
关于iOS:是否可以以编程方式读取手机电池百分比?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38785842/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |