Skip to content

Instantly share code, notes, and snippets.

@keefo
Last active December 19, 2015 14:09
Show Gist options
  • Save keefo/5967537 to your computer and use it in GitHub Desktop.
Save keefo/5967537 to your computer and use it in GitHub Desktop.
@interface NSWindow (FullScreen)
- (BOOL)isFullScreen;
@end
@implementation NSWindow (FullScreen)
- (BOOL)isFullScreen
{
return (([self styleMask] & NSFullScreenWindowMask) == NSFullScreenWindowMask);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment