如何使用Swift检测充电器是否已插入或拔出?

时间:2015-10-10 02:55:13

标签: xcode swift ios9

我想检测充电器何时插上以及何时拔下电源插头。我想用Swift写这个。如果有人为它共享一个代码片段会很棒,但是如果你能告诉我使用它会很好。

1 个答案:

答案 0 :(得分:6)

有关详细信息,请参阅This doc

Swift:

UIDevice.currentDevice().setBatteryMonitoringEnabled(true)
if UIDevice.currentDevice().batteryState() == UIDeviceBatteryStateCharging {
      NSLog("Device is charging.")
}