0

我正在开发一个菜单栏应用程序,它有一个从 NSView 继承的自定义 BackGroundView,它在 PanelController 类中声明为一个名为“backgroundView”的属性。我需要为此背景视图设置紫罗兰色。谁能告诉我如何做到这一点。提前致谢...

4

1 回答 1

0

在你的drawRect:方法中,你会有类似的东西:

-(void)drawRect:(NSRect)rect
{
    [[NSColor colorWithCalibratedRed:1 green:0 blue:1 alpha:1] set]; //Not sure if this is violet, just change the color yourself

    [NSBezierPath fillRect:rect];
}
于 2013-04-28T14:29:30.080 回答