I'm working on an app that has a status menu and from that menu user can open the app's main window. I want the ability to open this window on top of the full screen apps. The following code works fine if Application is agent (UIElement) is set to YES:
- (IBAction)showMainWindow:(id)sender
{
[_window makeKeyAndOrderFront:self];
[NSApp activateIgnoringOtherApps:YES];
}
However, I want to have an icon in the dock as well. If Application is agent (UIElement) is set to NO showMainWindow causes the app to jump to a different space rather than appearing on top of the active full screen app. Is there a solution to this?