0

一切都很好 -在本地- 与......

[NSEvent addLocalMonitorForEventsMatchingMask:NSEventMaskRotate 
                                      handler:^(NSEvent *e) {
                       NSLog(@"event type:  %lx", e.type);  }];

NSLOGevent type: 12

但是,我在全局处理程序中没有收到任何手势事件。(尽管其他类型、滚动、单击等确实有效。)

_ev = [NSEvent addGlobalMonitorForEventsMatchingMask: NSEventMaskRotate 
                                             handler:^(NSEvent *e){
                             NSLog(@"event type:  %lx", e.type);  }];

NSLOG

这低于 10.8。我意识到手势不会在 10.6 上得到报告。但文档没有表明这不应该起作用。有任何想法吗?

4

0 回答 0