本文介绍了以编程方式更改NSSlider值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有办法制作NSSlider的IBOutlet,然后能够以编程方式更改其值? slider.value =
...不起作用.
Is there a way to make an IBOutlet of an NSSlider and then be able to change its value programmatically? slider.value =
...does not work.
谢谢!
推荐答案
您可以使用NSControl的方法.
You can use the methods of NSControl.
示例:[self.slider setDoubleValue:0.1];
这篇关于以编程方式更改NSSlider值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!