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?

4

1 に答える 1

0

コメントの推奨に従って機能しました: [myCombo setDelegate:self]。

于 2013-03-27T21:52:54.237 に答える