| NSObject |
| ↓ |
| NSResponder |
| ↓ |
| NSView |
| ↓ |
| NSControl |
| ↓ |
| NSTextField |
NSArray *array=[NSArray arrayWithObjects:@"a",@"b",@"c",nil]; NSComboBox *combo=[[NSComboBox alloc]initWithFrame:CGRectMake(100, 100, 100, 30)]; [combo addItemsWithObjectValues:array]; [self.window.contentView addSubview:combo];