我有定时器的代码,时间间隔为5秒。有没有一种简单的方法来控制NSCombobox或类似的时间间隔?让我们说:我想在组合框中选择1到5秒的计时器间隔。
[NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(updateTextFieldWithRandomNumber)
userInfo:nil
repeats:YES];
答案 0 :(得分:1)
您可以从任何NSControl
子类获取doubleValue
:
[NSTimer scheduledTimerWithTimeInterval:[myComboBox doubleValue]
target:self
selector:@selector(updateTextFieldWithRandomNumber)
userInfo:nil
repeats:YES];