我正在尝试确定设备是否已插入并正在充电。我如何找到ios 5.x或更高版本?
答案 0 :(得分:3)
您可以使用UIDevice
获取这些信息
使用以下
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
if ([[UIDevice currentDevice] batteryState] == UIDeviceBatteryStateCharging)
NSLog(@"device is conected to power");