使用 CGEventTap 停止观看键盘事件点击的正确方法是什么?
我正在构建一个简单的后台应用程序来转换特定键的输出。感谢CGEventTap 上的这篇出色的帖子,我已经能够启用密钥转换。不幸的是,我似乎无法阻止它而不是杀死该应用程序。
当用户切换复选框以打开或关闭功能时,将调用以下方法。切换 ON 立即发生。切换关闭可能需要一分钟或更长时间才能生效。我通过日志看到“已禁用。停止转换水龙头。” 被检测到。但关键转换仍在继续。我不明白为什么。
- (void)watchEventTap
{
@autoreleasepool
{
CFRunLoopSourceRef runLoopSource = NULL;
CFMachPortRef eventTap = CGEventTapCreate(kCGHIDEventTap, kCGHeadInsertEventTap, kCGEventTapOptionDefault, CGEventMaskBit(kCGEventKeyUp) | CGEventMaskBit(kCGEventKeyDown) | CGEventMaskBit(NX_SYSDEFINED), myCGEventCallback, NULL);
runLoopSource = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, eventTap, 0);
if (!eventTap)
{
NSLog(@"Couldn't create event tap!");
exit(1);
}
if (self.shortcutEnabled) // User default toggled ON
{
NSLog(@"Enabled. Convert taps.");
CFRunLoopAddSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopCommonModes);
CGEventTapEnable(eventTap, true);
// CFRunLoopRun(); // This blocks rest of app from executing
}
else // User default toggled OFF
{
NSLog(@"Disabled. Stop converting taps.");
CFRunLoopRemoveSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopCommonModes);
CGEventTapEnable(eventTap, false);
// Clean up the event tap and source after ourselves.
CFMachPortInvalidate(eventTap);
CFRunLoopSourceInvalidate(runLoopSource);
CFRelease(eventTap);
CFRelease(runLoopSource);
eventTap = NULL;
runLoopSource = NULL;
}
}
// exit(0); // This blocks rest of app from executing
}
感谢您的任何建议。我是新构建 Mac OS X 应用程序,所以如果我做一些无知的事情,请原谅我。