gpt4 book ai didi

objective-c - Cocoa NSAlert 不将警报显示为工作表

转载 作者:行者123 更新时间:2023-12-03 17:18:52 25 4
gpt4 key购买 nike

我有以下代码,希望在 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

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

最佳答案

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

可能是因为 beginSheetModalForWindow:

部分

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

我将其从 mainWindowController.window 更改为 self.view.window 并且它有效,如下所示:

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

也许这会对我的思考有所帮助。

关于objective-c - Cocoa NSAlert 不将警报显示为工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44237185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com