I am trying to respond to a click within a textfield. When the click occurs, I am going to open a panel. My initial thought was to use
click
textfield
panel
Since NSTextField inherits from the NSControl class, it also inherits the -(void)mouseDown:(NSEvent*) theEvent method.
NSTextField
NSControl
-(void)mouseDown:(NSEvent*) theEvent