I have an NSTableView
and I have some issues with its default behavior.
If I've overridden the keyDown:
method in a category as follows:
- (void) keyDown:(NSEvent *)event {
[super keyDown:event];
}
I can't change the row selection with the keyboard arrow keys anymore. Why is that?