How to get the current NSControl clicked on NSWindow? I have a mouse down event on NSWindowController,
-(void)mouseDown:(NSEvent *)theEvent {
but when I click inside NSControls placed on NSWindow I dont get the mouse down event called at all.
I have even subclassed NSControls to custom NSViews but I dont receive their mouse down events too when clicked inside. I added setAcceptsTouchEventsto yes and calling acceptsFirstResponder but its not helping. Surprisingly, when I click on NSWindow and not on any NSControls I get the mousedown event.
What am I doing wrong here?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
try this out
edit: The target should be the class instance where that method is implemented. So, for example, if you had an IBAction in your app delegate that was connected to your slider called sliderReport: then do this:
|
|||||||
|
