Prevent NSTableView from responding to keyDown:
I have an NSTableView
that doesn’t allow selecting rows. I’d like keyDown:
events (edit: from arrow keys) to reach the view’s controller (which is also its delegate
).
By default, a table view “consumes” these events, so they don’t go up the responder chain.
How can I prevent that, preferably without subclassing NSTableView
?
Prevent NSTableView from responding to keyDown:
I have an NSTableView
that doesn’t allow selecting rows. I’d like keyDown:
events (edit: from arrow keys) to reach the view’s controller (which is also its delegate
).
By default, a table view “consumes” these events, so they don’t go up the responder chain.
How can I prevent that, preferably without subclassing NSTableView
?