Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 bottom bar on my window, and using NSBorderlessWindowMask makes that disappear. I also tried using setContentBorderThickness:forEdge: with NSMaxYEdge and setting it to 0, that didn't work either.

Any help is appreciated

share|improve this question

6 Answers

[yourWindow setStyleMask:NSBorderlessWindowMask];
share|improve this answer
Worked like a charm. – Ryan Detzel Jan 9 '11 at 13:26
I believe you also have to override canBecomeKeyWindow or something like that. I tried this and all that happened is that my window wouldn't show. However, I used the Apple sample code that bijan linked and that worked beautifully. – Kenny Wyland Sep 29 '11 at 20:11
indragie explicitly indicated that he could not use NSBorderlessWindowMask. – ctpenrose Dec 3 '12 at 20:21
up vote 7 down vote accepted

I pretty much just ended up changing the design of my app so that this isn't necessary, for all those who are thinking about doing the same, its not a great way to go.

share|improve this answer

Theres an Apple example of that:

Round Transparent Window

share|improve this answer
I think this is the best answer. I downloaded this sample project, copied CustomWindow.h and .m into my project, changed my .xib to set the class of my Window to CustomWindow and it all worked perfectly. 3 steps, no problems. – Kenny Wyland Sep 29 '11 at 20:10

The only way I know would be to create a window without a titlebar (see NSBorderlessWindowMask). Note that you can't (easily) create a window without a titlebar in IB, so you will have to do a bit of work in code (there are a couple of different approaches, you can probably figure it out).

A big drawback with using a window without a titlebar is that you're now on the hook for much more of the standard appearance and behaviour - rounded corners and such.

share|improve this answer

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];
share|improve this answer
I tried this and it just turns the window white and blank. If I'm not mistaken, the superview of the button is NSThemeFrame. However, I might try adjusting the frame of the view to see if I can shrink it. – indragie Jan 8 '10 at 23:31
Adjusting the frame doesn't work well, I get all sorts of strange results. Pretty much stuck I suppose. – indragie Jan 9 '10 at 0:28
The reason that didn't work is that the NSThemeFrame is the superview of the window's contentView. Hide the frame view, and all its subviews get hidden, too. – NSResponder Jan 9 '10 at 1:07
Just for fun I class dumped NSThemeFrame's header and other related classes then found some private methods in there for returning the titlebar height. Then I loaded my custom theme frame subclass in my NSWindow subclass and tried it, and it did work, but it got rid of my rounded corners and the bottom bar as well. Oh well. – indragie Jan 21 '10 at 3:02

Make a custom window. It's not hard to do.

share|improve this answer
6  
-1 What an awful answer.. – Kenny Wyland Sep 29 '11 at 20:00
World's worst answer ever! – Fernando Valente Feb 22 '12 at 3:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.