1

We can clear the selection of ComboBox coding this:

combobox.SelectedIndex=-1;

with C# on Windows. However, it this coding methodology cannot run for macOS and iOS NSComboBox with Swift or Objective - C. What is the real solution ? Thanks.

berkb
  • 542
  • 6
  • 21

1 Answers1

3

Look in the documentation. NSComboBox has a method:

func deselectItem(at index: Int)

and to get the index of the selected item:

var indexOfSelectedItem: Int { get }
mschmidt
  • 2,740
  • 4
  • 17
  • 31