我在我的NSWindow上使用以下代码,以便我的所有按钮,弹出窗口等处于黑暗模式色调:
[self.window setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
但是我想设置一个自定义窗口背景颜色而不是黑色颜色,它被设置为充满活力的黑暗外观的默认颜色。在没有外观的情况下调用此行无法设置:
self.window.backgroundColor = [NSColor colorWithPatternImage:[NSImage imageNamed:@"backgroundColor"]];
有什么想法吗?