0

I have an NSComboBox defined in Interface Builder, and the -(void)comboBoxWillDismiss:(NSNotification *)notification function in my .m file.
However, when changing the content of the NSComboBox (internal cells, not data source), the comboBoxWillDismiss does not get fired.
What did I forget to do?

Laurent Crivello
  • 3,809
  • 6
  • 45
  • 89

1 Answers1

0

It worked as per comment recommendation: [myCombo setDelegate:self].

Laurent Crivello
  • 3,809
  • 6
  • 45
  • 89