In macOS how can I create a window with an "integrated title bar and toolbar" in Xcode and/or Interface Builder?
This is the "fat title bar" type
When the window loads, set titleVisibility to hidden:
titleVisibility
// Objective-C window.titleVisibility = NSWindowTitleHidden; // Swift window?.titleVisibility = .hidden