我想在NSTableView上检测rightMouseDown和 otherMouseDown 。 我搜索它并发现一些答案使用menuForEvent但是,当右键按时调用它但我想检测鼠标点击nstableview。
答案 0 :(得分:2)
有几种方法:
如果您继承white-space: normal;
,则可以覆盖NSTableView
NSResponder
或rightMouseDown:
个函数。
如果您不想继承otherMouseDown:
,则可以附加本地监视器。问题是这个本地监视器将查看应用程序中指定的每个事件,因此当发生正确或其他鼠标按下事件时,您必须进行一些检查以确保鼠标位于表视图内。
NSTableView
请注意,此方法会返回[NSEvent addLocalMonitorForEventsMatchingMask:NSEventMaskRightMouseDown|NSEventMaskOtherMouseDown handler:^NSEvent * _Nullable(NSEvent * _Nonnull theEvent) {
if ([theEvent window] == [tableView window]) {
NSPoint event_location = [theEvent locationInWindow];
NSPoint local_point = [[tableView superview] convertPoint:event_location fromView:nil];
if (NSPointInRect(local_point, [tableView frame])) {
}
}
return theEvent;
}];
对象,您需要在必要时将其传递到id
(就像removeMonitor
一样)。