从 NSComboBox 获取选定的文本值
Getting selected Text Value from NSComboBox
我正在尝试从 comboBox.The 中获取选定的字符串 字符串转换无效
let font = NSFont(name:String(combo_font.objectValueOfSelectedItem), size: 50)
如何正确获取字符串值?
NSComboBox
是NSTextField
的子类,就是
NSFont(name: combo_font.stringValue, size: 50)
我正在尝试从 comboBox.The 中获取选定的字符串 字符串转换无效
let font = NSFont(name:String(combo_font.objectValueOfSelectedItem), size: 50)
如何正确获取字符串值?
NSComboBox
是NSTextField
的子类,就是
NSFont(name: combo_font.stringValue, size: 50)