Hello
When creating a Mac Catalyst app, I can customize the titlebar and its toolbar.
If I do :
I get a titlebar at the top of my app, and the 3 buttons (close, reduce, fullscreen) have an "inset".
However, if I do :
I don't see a titlebar, and the 3 buttons are stuck at the top left of my window.
Is there a way to not see a titlebar, but, at the same time, have the "inset" for the buttons ?
Thanks
When creating a Mac Catalyst app, I can customize the titlebar and its toolbar.
If I do :
Code Block windowScene.titlebar?.titleVisibility = .hidden windowScene.titlebar?.toolbar = NSToolbar()
I get a titlebar at the top of my app, and the 3 buttons (close, reduce, fullscreen) have an "inset".
However, if I do :
Code Block windowScene.titlebar?.titleVisibility = .hidden windowScene.titlebar?.toolbar = nil
I don't see a titlebar, and the 3 buttons are stuck at the top left of my window.
Is there a way to not see a titlebar, but, at the same time, have the "inset" for the buttons ?
Thanks