关于objective C:使 NSAlert 成为最顶层的窗口?

Make a NSAlert the topmost window?

我已在我的应用程序中创建了主窗口以进行以下设置:

1
2
3
4
5
[self setLevel:kCGDesktopWindowLevel + 1];
[self setCollectionBehavior:
     (NSWindowCollectionBehaviorCanJoinAllSpaces |
      NSWindowCollectionBehaviorStationary |
      NSWindowCollectionBehaviorIgnoresCycle)];

这是一个非常自定义的窗口,有点浮在桌面上方。

此外,它是一个菜单栏应用程序 (LSUIElement)。

好的,所以如果出现问题,我需要显示警报。这是我的做法:

1
2
3
4
5
6
NSAlert *alert = [NSAlert alertWithMessageText:@""
                                 defaultButton:@""
                               alternateButton:@""
                                   otherButton:@""
                     informativeTextWithFormat:@""];
[alert runModal];

当然我已经填写了按钮和其他文本。

这是我的问题:当我的应用程序当前不是关键应用程序,并且弹出此警报时,它不是关键窗口。像这样:

enter

看看窗口没有被选中?有没有办法在不改变我的整个应用程序窗口级别的情况下解决这个问题?谢谢!


您是否尝试过在显示警报的代码中激活您的应用程序?

1
[[NSRunningApplication currentApplication] activateWithOptions:0];

如果传递 0 不起作用,您可以传递 NSApplicationActivateIgnoringOtherApps 作为您的选项,但 Apple 建议您不要这样做,除非确实有必要(请参阅 NSRunningApplication 文档)。

更新:您在运行警报之前已激活。这适用于我在设置了 LSUIElement 的新应用程序中:

1
2
3
4
5
6
7
8
9
10
11
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    NSAlert *alert = [NSAlert alertWithMessageText: @"Blah"
                                     defaultButton: @"Blah"
                                   alternateButton: @"Blah"
                                       otherButton: @"Blah"
                         informativeTextWithFormat: @"Blah"];

    [[NSRunningApplication currentApplication] activateWithOptions:NSApplicationActivateIgnoringOtherApps];
    [alert runModal];
}


强制应用程序移动到最前面是一个相当糟糕的主意。
人们可能更愿意使用专用的 NSPanel 属性 'floatingPanel' 使警报浮动在所有内容上:

1
2
NSPanel* panel = static_cast<NSPanel*>([alert window]);
panel.floatingPanel = YES;

如果你也想支持 10.5。你可以使用

1
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];