I have an NSCombobox in my app and I have a datasource set up for it.
IBOutlet NSComboBox *comboBox;
I also specify at some point in my program:
[comboBox reloadData];
My thought would be that after this call, I should get calls to these methods as long as I remembered to set the datasource of the combo box (which i did):
- (id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(NSInteger)index
- (NSInteger)numberOfItemsInComboBox:(NSComboBox *)aComboBox
But I don't. Is this not how combo boxes work?