I have an NSTableView that is not responding to up/down arrows keys. From my understanding responding IS the default behaviour, so I'm not sure what is going on (Note, I am NOT overriding any keyboard commands). The only setup I do for my table is:
[tableView setDoubleAction: @selector(doubleClickedRow)];
[tableView setSortDescriptors:[NSArray arrayWithObject:sortDescriptor]];
[tableView registerForDraggedTypes: [NSArray arrayWithObjects: NSFilenamesPboardType, nil]];
[tableView setDraggingSourceOperationMask: NSDragOperationCopy forLocal:NO];
But from what I can tell, none of these would cause any problems.
Does anyone have any suggestions on where I could look for the root of this problem?