如何设置NSTabView的背景颜色?

时间:2012-06-01 15:55:35

标签: objective-c tabview

[tabView setBackgroundColor:[NSColor colorWithCalibratedRed:0.227f green:0.251f blue:0.337 alpha:0.8];  

以上代码不起作用:(

由于

1 个答案:

答案 0 :(得分:2)

NSTabView没有setBackgroundColor方法,所以我认为你不能按原样使用它。解决它的方法之一是继承NSTabView并覆盖drawRect方法。在github上检查此版本的自定义标签控件 - https://github.com/ciaran/psmtabbarcontrol