iOS - 如何检测电源是不是连接到 iDevice 广告正在充电
Posted
技术标签:
【中文标题】iOS - 如何检测电源是不是连接到 iDevice 广告正在充电【英文标题】:iOS - how to detect if power is connected to the iDevice ad is chargingiOS - 如何检测电源是否连接到 iDevice 广告正在充电 【发布时间】:2012-07-02 13:19:30 【问题描述】:我正在尝试确定他的设备是否已插入并正在充电。如何在 ios 5.x 或更高版本中找到?
【问题讨论】:
iPhone4 how to find out if the power cable is plugged in?的可能重复 【参考方案1】:您可以使用UIDevice
获取这些信息
使用下面的
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
if ([[UIDevice currentDevice] batteryState] == UIDeviceBatteryStateCharging)
NSLog(@"device is conected to power");
【讨论】:
以上是关于iOS - 如何检测电源是不是连接到 iDevice 广告正在充电的主要内容,如果未能解决你的问题,请参考以下文章