1

我正在尝试确定他的设备是否已插入并正在充电。如何在 ios 5.x 或更高版本中查找?

4

1 回答 1

3

你可以UIDevice用来获取这些信息

使用以下

[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];

if ([[UIDevice currentDevice] batteryState] == UIDeviceBatteryStateCharging)
    NSLog(@"device is conected to power");
于 2012-07-02T13:21:27.073 回答