I\'m using this code to bring up my window:
[self.window makeKeyAndOrderFront:self]; [self.window setOrderedIndex:0];
But often it will be
To bring your app to the front:
[NSApp activateIgnoringOtherApps:YES];
Swift:
NSApp.activateIgnoringOtherApps(true)
Swift 3:
NSApp.activate(ignoringOtherApps: true)