change NSSlider Value programmatically

一个人想着一个人 提交于 2019-12-18 05:50:37

问题


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.

Thanks!


回答1:


You can use the methods of NSControl.

Example: [self.slider setDoubleValue:0.1];




回答2:


Swift answer to this question is to use the doubleValue property to access the slider value in OSX:

slider.doubleValue = 0.1 

print(slider.doubleValue)


来源:https://stackoverflow.com/questions/9867343/change-nsslider-value-programmatically

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!