1

我有以下代码,希望在 AppDelegate.m 中将警报显示为工作表。

- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender {

    if ([self.socket.inputStream streamStatus] == 2) {

        NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil];
        NSWindowController *mainWindowController = [storyBoard instantiateControllerWithIdentifier:@"MainWindow"];

        NSAlert *alert = [[NSAlert alloc] init];
        [alert addButtonWithTitle:@"OK"];
        [alert setMessageText:NSLocalizedString(@"Warning", @"Warning")];
        [alert setInformativeText:NSLocalizedString(@"Disconnect before quit this app!!", @"Disconnet before quit")];
        [alert beginSheetModalForWindow:mainWindowController.window completionHandler:^(NSModalResponse returnCode) {

        }];

        return NO;

    } else {

        return YES;
    }
}

但不幸的是,结果警报没有显示为工作表。就像截图一样。

doesNotShowAlertAsSheet

我不明白为什么。并且想知道如何将警报显示为工作表。请帮我!!

4

1 回答 1

0

它对我有用。我不太了解。

可能是因为部分beginSheetModalForWindow:

在你的问题中,似乎beginSheetModalForWindow:mainWindowController.window

我将它从 更改mainWindowController.windowself.view.window并且它起作用了,如下所示:

[alert beginSheetModalForWindow:self.view.window completionHandler:^(NSModalResponse returnCode)
{
    ....
}];

可能会帮助我想。

于 2018-02-28T07:50:08.077 回答