I have a subclassed NSTextField to limit the maximum length (only 1 character). Now, once the user finishes entering this one character I would like to move the focus to the next NSSTextView. This is where I need some help. How can I tell the application "move the focus to the next field"? I suppose I need to call the parent view from the subclassed NSTextField, something like:
[[self parent] nextKeyView];
But how do I do this?