目录
1.1 初始化Button
1.2 Button样式
1.1 初始化Button
NSButton *button = [[NSButton alloc]init];
[button setTitle:@"确认签收"];
[button setTarget:self];
button.tag = 1000+row;
[button setAction:@selector(buttonClick:)];
[bgView addSubview:button];
1.2 Button样式
[button setBezelStyle:NSRegularSquareBezelStyle];
(1)NSRoundedBezelStyle
(2)NSSmallSquareBezelStyle
(3)NSRoundRectBezelStyle
(4)NSTexturedRoundedBezelStyle
(5)NSTexturedSquareBezelStyle
(6)NSRecessedBezelStyle
(7)NSDisclosureBezelStyle
(8)NSShadowlessSquareBezelStyle
(9)NSHelpButtonBezelStyle
(10)NSRoundedDisclosureBezelStyle
(11)NSCircularBezelStyle
(12)NSRegularSquareBezelStyle
(13)NSInlineBezelStyle