Is there a way to hide the titlebar in an NSWindow? I don\'t want to have to completely write a new custom window. I can\'t use NSBorderlessWindowMask because I have a botto
What happens if you get the superview of the close button? Can you hide that?
// Imagine that 'self' is the NSWindow derived class NSButton *miniaturizeButton = [self standardWindowButton:NSWindowMiniaturizeButton]; NSView* titleBarView = [miniaturizeButton superview]; [titleBarView setHidden:YES];