I have a custom NSTableView
subclass filled with several custom NSTextFieldCell
subclasses. I would like to be able to change the edited cell by using
Possibly related entry in Apple documentation:
Controls whether the text views sharing the receiver’s layout manager behave as field editors.
- (void)setFieldEditor:(BOOL)flag
flag: YES
to cause the text views sharing the receiver's layout manager to behave as field editors, NO
otherwise.
Field editors interpret Tab, Shift-Tab, and Return (Enter) as cues to end editing and possibly to change the first responder. Non-field editors instead accept these characters as text input. See “Text Fields, Text Views, and the Field Editor” for more information on field editors. By default, text views don’t behave as field editors.