macOS window with integrated title bar and toolbar?
- Create a standard toolbar.
When the window loads, set
titleVisibility
to hidden:// Objective-C window.titleVisibility = NSWindowTitleHidden; // Swift window?.titleVisibility = .hidden
As of Xcode 10, you can do this in your XIB or storyboard by turning on the “Hide Title” check box under the window's title in the window's Attributes Inspector.
Note also that you should use the “Textured Rounded” style for toolbar buttons.