gpt4 book ai didi

macos - 使用 Dark Transparency 使标题栏和 View Controller 无缝衔接

转载 作者:搜寻专家 更新时间:2023-10-31 22:21:54 25 4
gpt4 key购买 nike

您好,我一直在网上搜索,找到了关于这个主题的各种有用信息,但似乎都没有用

如果想得到这样的东西 enter image description here

标题栏和窗口其余部分融合的地方。从互联网上得到的代码 iv 到目前为止在我的 viewDidLoad() 中

    self.view.window?.appearance = NSAppearance(named: NSAppearanceNameVibrantDark)
self.view.window?.styleMask = (self.view.window?.styleMask)! | NSFullSizeContentViewWindowMask
self.view.window?.titlebarAppearsTransparent = true
self.view.window?.movableByWindowBackground = true

但这并没有做任何事情。我是 Mac 开发新手(通常是 ios),所以感谢所有帮助,谢谢!

最佳答案

创建 NSWindowController 的子类并将您的代码放入 windowDidLoad()。

override func windowDidLoad() {
super.windowDidLoad()

// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
self.window?.appearance = NSAppearance(named: NSAppearanceNameVibrantDark)
self.window?.styleMask = (self.window?.styleMask)! | NSFullSizeContentViewWindowMask
self.window?.titlebarAppearsTransparent = true
self.window?.movableByWindowBackground = true
}

关于macos - 使用 Dark Transparency 使标题栏和 View Controller 无缝衔接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33007134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com