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.
我的 Mac OS 应用程序中有一个清除按钮。 按下按钮时,它会清除表单的所有值并将 重置NSPopUpButton为第一项。
NSPopUpButton
问题是如何NSPopUpButton使用代码更改控件。
谢谢
您可以致电:
目标 C:
[myPopupButton selectItemAtIndex:0]
迅速:
myPopupButton.selectItem(at: 0)
有关详细信息,请参见此处。
当参数为 0 时,它意味着nil,并且有效。如果您输入其他数字(例如 2 ),这将不起作用,因为参数不是数字!!!