Created
July 26, 2010 22:48
-
-
Save statonjr/491386 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSRect mainDisplayRect = [[NSScreen mainScreen] frame]; | |
NSWindow *fullScreenWindow = [[NSWindow alloc] initWithContentRect:mainDisplayRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]; | |
[fullScreenWindow setLevel:NSMainMenuWindowLevel+1]; | |
[fullScreenWindow makeKeyAndOrderFront:self]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code for creating full-screen application in Objective-C. Drop into applicationDidFinishLaunching: