您好我是cocoa编程的新手,想知道如何为系统范围的事件(例如鼠标拖动)创建一个监听器。我已将此添加到我的应用程序中(我在另一篇文章中看到了它):
static CGEventRef eventFunction(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon)
{
printf("event triggered\n");
return event;
}
但它永远不会被调用,我不知道我打算在哪里注册回电。
答案 0 :(得分:7)
观看全球鼠标事件的最简单方法是使用NSEvent
类方法addGlobalMonitorForEventsMatchingMask:handler:
示例:
[NSEvent addGlobalMonitorForEventsMatchingMask:NSLeftMouseDraggedMask
handler:^(NSEvent *event) {
NSLog(@"Dragged...");
}];
请注意,这仅适用于其他应用程序,要在您自己的应用中获取这些事件,您必须添加其他本地事件处理程序。