Macosx NSPopUpButton

2015-08-12  本文已影响236人  iCloudEnd

和NSComBox相比nspopupbutton还是比较简单的,只需要设置titles即可

- (void)viewDidLoad {

[super viewDidLoad];

[groupPB removeAllItems];

[groupPB addItemsWithTitles:[NSArray arrayWithObjects:@"abc",@"cdb",@"13d3d", nil]];

// Do any additional setup after loading the view.

}


//=================================

-(IBAction) groupSelect:(id)sender

{

NSLog(@"%@",[[groupPB selectedItem] title]);

}

上一篇 下一篇

猜你喜欢

热点阅读