我的 mainmenunib 文件中有一个NSComboBox
。我创建了一个组合框“ cb ”的出口并将其与我的委托人连接我还将委托人和数据源与我的委托人连接。
-(void)applicationDidFinishLaunching:(NSNotification *)aNotification
{ arr=[NSMutableArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e",@"f", nil];
[cb reloadData];
}
-(NSInteger)numberOfItemsInComboBox:(NSComboBox *)aComboBox{
return arr.count;
}
-(id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(NSInteger)loc{
return [arr objectAtIndex:loc];
}
但是当我运行应用程序时,数据并没有出现在组合框中。请帮助我,因为我是可可编程的新手。提前致谢。