我在OS X应用程序中使用NSPopupButton向用户显示选项列表。 我正在填充它:
[baudButton removeAllItems];
[baudButton addItemWithTitle:(@"Baud")];
[baudButton addItemWithTitle:(@"600")];
[baudButton addItemWithTitle:(@"1200")];
[baudButton addItemWithTitle:(@"2400")];
有没有办法直观地标记选择,还是应该使用其他控件?
答案 0 :(得分:0)
将NSPopUpButton的type属性设置为“Popup”,勾选了所选项目,并在“关闭”按钮上显示该项目。