Pedro Vieira
Pedro Vieira

Reputation: 3370

How to make a NSWindow like this one from Tweetbot?

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. enter image description here

Upvotes: 2

Views: 528

Answers (1)

DrummerB
DrummerB

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

Related Questions