For a date cell I want to display an NSPopOver when a user enters that cell (be it by double clicking, tabbing to it, etc). Is there any notification I can respond to that is sent on entering?
My initial thought was using - (BOOL)textShouldBeginEditing:(NSText *)textObject or - (void)textDidBeginEditing:(NSNotification *)aNotification, but these aren't called until the user actually changes something in the cell.