I have a NSTimer and a NSSlider in my app. How do I make, that the time interval of the timer would respond instantly to the slider value?
For now it responds just at the beginning. Once the timer is already fired, it doesn't respond any more...
[NSTimer scheduledTimerWithTimeInterval:[slider doubleValue]
target:self
selector:@selector(updateTextFieldWithRandomNumber)
userInfo:nil
repeats:YES];