NSView显示颜色的几种方式

对于一个NSView或者它的子类,要想显示颜色通常有许多中方法。稍微总结下几种方法:

方法一:

重写NSView的子类,在drawRect绘制代码中填充颜色。

  CGContextRef context = (CGContextRef) [[NSGraphicsContext currentContext] graphicsPort];

  CGContextSetRGBFillColor(context, 0.227,0.251,0.337,0.8);

  CGContextSetRGBFillColor(context, 0.0,0.0,0.0,0.8);

  CGContextFillRect(context, NSRectToCGRect(dirtyRect));


方法二:

美工设计相应配色图片,在drawRect把图片绘制出来。以达到显示颜色的效果。

   NSImage* image=[NSImageimageNamed:@"test"];

    [image drawInRect:self.bounds 

             fromRect:NSZeroRect 

            operation:NSCompositeSourceOver 

             fraction:1.0];

方法三:

给NSView添加一个层(CALayer),通过绘制层的颜色,同样可以显示相应颜色,一个CALayer还可以添加子层,子层可以是文字层,各种颜色层,通过移出层,可以实现视图的颜色切换。

方法四:

- (void)drawRect:(NSRect)dirtyRect
{
    // Drawing code here.
    
    [[NSColor yellowColor] set];
    NSRectFill(dirtyRect);
}
这个方法和第一种没区别不大


你可能感兴趣的:(视图颜色)