MacOS-MacAPP的NSView改变背景颜色
Posted MinggeQingchun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MacOS-MacAPP的NSView改变背景颜色相关的知识,希望对你有一定的参考价值。
和移动端ios的UIView不同, NSView不能直接通过backgroundColor改变背景颜色,NSWindow是可以直接修改的
因此想要修改NSView的背景颜色有两种方法:
1、在layer上
NSView *view = [[NSView alloc]init];
view.frame = NSMakeRect(0, 0, 100, 100);
view.wantsLayer = YES;
view.layer.backgroundColor = [NSColor redColor].CGColor;
[self.view addSubview:view];
2、自定义子类,在drawRect方法中改变背景色
- (void)drawRect:(NSRect)dirtyRect {
[[NSColor redColor] setFill];
NSRectFill(dirtyRect);
[super drawRect:dirtyRect];
}
以上是关于MacOS-MacAPP的NSView改变背景颜色的主要内容,如果未能解决你的问题,请参考以下文章