绘制渐变背景代码

Posted PJXWang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘制渐变背景代码相关的知识,希望对你有一定的参考价值。

- (void)drawRect:(NSRect)dirtyRect {

    [super drawRect:dirtyRect];

    NSGradient *backgroundGradient = [[NSGradient alloc] initWithStartingColor:[NSColor colorWithDeviceRed:239.0/255.0 green:239.0/255.0 blue:239.0/255.0 alpha:1.0] endingColor:[NSColor colorWithDeviceRed:239.0/255.0 green:239.0/255.0 blue:239.0/255.0 alpha:1.0]];

 

    [backgroundGradient drawInRect:[self bounds] angle:90.0];

 

    // Drawing code here.

}

 

以上是关于绘制渐变背景代码的主要内容,如果未能解决你的问题,请参考以下文章

CSS中的渐变——线性渐变

在 UITableViewCell 的背景图像上添加渐变

win32-使用FillRect绘制具有渐变颜色的客户区域背景

具有渐变的可绘制视图背景在预览中正确显示但在模拟器中不正确

在表格视图单元格背景上放置渐变

如何在 SKShapeNode 中绘制渐变?