Reputation: 3370
I'd like to make a NSWindow
like this one. How can i do it?
Sorry if this is an noobie question but i'm figuring it out.
Upvotes: 2
Views: 528
Reputation: 40211
Hide the title bar like this:
[myWindow setStyleMask:NSBorderlessWindowMask];
I'm not sure what capabilities that Tweetbot window has, but if you want to move the window around by dragging the white area, you can use a custom NSView and override mouseDownCanMoveWindow
to return YES
.
Upvotes: 3