Skip to content

Instantly share code, notes, and snippets.

@johannesl
Created January 31, 2013 13:03
Show Gist options
  • Save johannesl/4682698 to your computer and use it in GitHub Desktop.
Save johannesl/4682698 to your computer and use it in GitHub Desktop.
How to force your window to front in Cocoa / OSX.
NSApplication *myApp = [NSApplication sharedApplication];
[myApp activateIgnoringOtherApps:YES];
[self.window orderFrontRegardless];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment