Z zgmg macrumors newbie Original poster Mar 30, 2013 4 0 Apr 14, 2013 #1 How would I create an app with no title bar? Could someone/s help me create, from scratch, a Mac App that has no title bar? Thank you.
How would I create an app with no title bar? Could someone/s help me create, from scratch, a Mac App that has no title bar? Thank you.
X xStep macrumors 68020 Jan 28, 2003 2,030 143 Less lost in L.A. Apr 14, 2013 #2 Haven't done that before, but look at the NSWindow documentation for the initWithContentRect methods and the style masks for them.
Haven't done that before, but look at the NSWindow documentation for the initWithContentRect methods and the style masks for them.
B bumper314 macrumors member Jun 23, 2009 39 0 Apr 15, 2013 #3 You can set the Presentation mode in the info.plist, or you can make an NSView (not NSWindow) take over the screen.
You can set the Presentation mode in the info.plist, or you can make an NSView (not NSWindow) take over the screen.
Peter Maurer macrumors member Oct 9, 2008 72 25 Apr 15, 2013 #4 I'd suggest starting with Apple's borderless window sample project, RoundTransparentWindow. It's easy to understand if you know the basics, and it has a lot of helpful comments.
I'd suggest starting with Apple's borderless window sample project, RoundTransparentWindow. It's easy to understand if you know the basics, and it has a lot of helpful comments.