I\'m using an NSSlider control, and I\'ve configured it to use continuous mode so that I can continually update an NSTextField with the current value of the slider while the
Subclass NSSlider and implement
NSSlider
- (void)mouseDown:(NSEvent *)theEvent
it's called mouseDown:, but its called when the know interaction ends
mouseDown:
- (void)mouseDown:(NSEvent *)theEvent { [super mouseDown:theEvent]; NSLog(@"Knob released!"); }