是否有方法检测mac计算机上的充电器是否断开。
即,是否可以制作一个监听"充电器连接"/"充电器断开"事件的应用程序?
类似于ios:
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
if ([[UIDevice currentDevice] batteryState] == UIDeviceBatteryStateCharging) {
NSLog(@"Device is charging.");
}
但是我想要一个事件监听器,例如:-(void) didDisconnectCharger:(id)sender.
我认为您要查找的函数是IOKit
中的IOPSNotificationCreateRunLoopSource。