I'm trying to show a NSPanel when my application, a LSUIElement, detectes a change on the filesystem from the background.
I've set the NSPanel's (self.uploadPopover) mask is NSNonactivatingPanelMask.
...
[NSApp activateIgnoringOtherApps:YES];
[self.uploadPopover makeKeyAndOrderFront:self];
The panel does not show when the application is not focused.