I' using
- (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject
to provide my own field editor so i can display a custom context menu. This works but when inside the "menuForEvent:" method of my field editor, how can i find to which NSTextField it is attached?
EDIT: okay i found that i get it via inside the TextView via
[[[[self window] firstResponder] nextResponder] nextResponder]
The question is - is this a good solution or a hack. I have to skip an internal responder of class _NSKeyboardFocusClipView so i scared that this might not work on future Cocoa versions.