- (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.
}
时间: 2024-10-10 16:31:46