当我连接设备时,我就可以检测到,那根电缆已经连接好了,但是当电缆拔掉的时候怎么会通知那根电缆拔掉了。
if (UIDevice.current.batteryState == UIDeviceBatteryState.charging)
{}其他{}
而拔掉电源的方法没有叫救命。
最佳答案
UIDevice.current.isBatteryMonitoringEnabled = true
if UIDevice.current.batteryState == .charging {
print("Device is charging.")
}
关于ios - 检测设备是否正在充电或已拔出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50523545/