我已经设置了一张特定的图片作为我的应用的背景。 在应用程序启动期间(归档后),在显示我选择的背景图片之前,会出现一个浅灰色背景。我想摆脱这个,但是怎么样?
以下是我用来更改应用背景图片的代码:
func applicationDidFinishLaunching(_ aNotification: Notification){
self.window.backgroundColor = NSColor(patternImage: imagedeFond!)
self.window.titlebarAppearsTransparent = true
self.window.isMovableByWindowBackground = true
}
图片格式为png。 感谢