Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让我的 NSSlider 从某个值开始,但我一直无法在 swift book 或其他资源中找到执行此操作的功能。是否有捷径可寻?
谢谢
你必须首先为你的 NSSlider 创建一个 outlet:
@IBOutlet weak var yourSlider: NSSlider!
那么你只需要设置它的初始值如下:
yourSlider.doubleValue = 0.5