1、需要 选择“uses data source”,不然datasource是不启作用
41085-2cd96e23d34160df.png
2、代理
// Combo box data source methods
// ==========================================================
- (NSInteger)numberOfItemsInComboBoxNSComboBox *)aComboBox {
return 2;
}
- (id)comboBoxNSComboBox *)aComboBox objectValueForItemAtIndexNSInteger)loc {
return [NSString stringWithFormat"%ld",loc];
} |