NSDocumentController closeAllDocumentsWithDelegate 不调用我的 NSPersistentDocument 子类的 canCloseDocumentWithDelegate
NSDocumentController closeAllDocumentsWithDelegate does not call canCloseDocumentWithDelegate of my NSPersistentDocument subclass
根据 Apple 的文档,如果您退出应用程序,closeAllDocumentsWithDelegate
(来自 NSDocumentController
)应该为所有打开的文档调用 canCloseDocumentWithDelegate
of NSDocument
。
在我基于 NSPersistentDocument
的应用程序中,我需要覆盖 canCloseDocumentWithDelegate
以警告用户,以防某些服务器功能在文档关闭时仍然 运行。这与任何数据更改无关。
这在用户关闭单个文档时有效;我可以显示 sheet 警告并让用户取消关闭过程。
但是,我的 canCloseDocumentWithDelegate
版本在应用程序退出时不会被调用。这可能是什么原因?
根据 Apple 开发人员技术支持,这是一个已知问题。我终于把app退出菜单项的自动连线砍掉了,全部自己处理。我需要使文档的服务器功能信息从外部可用(在本例中为 optionButton
的状态)并将此功能添加到 AppDelegate
:
- (IBAction)terminateGracefully:(id)sender {
BOOL optionOn = FALSE;
for (Document *doc in NSApp.orderedDocuments) {
if (doc.optionButton.state == NSControlStateValueOn) {
optionOn = TRUE;
}
}
if (optionOn) {
NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:@"Checkbox in some window is on"];
[alert setInformativeText:@"Something is going on. If you close the app now, it will stop. Close anyway?\n"];
[alert setAlertStyle:NSAlertStyleCritical];
[alert addButtonWithTitle:@"Don't close"];
[alert addButtonWithTitle:@"Close anyway"];
NSModalResponse resp = [alert runModal];
if (resp == NSAlertSecondButtonReturn) {
// We really want to close
[NSApp terminate:sender];
}
} else {
[NSApp terminate:sender];
}
}
然后我将应用程序的退出菜单项绑定到terminateGracefully:
根据 Apple 的文档,如果您退出应用程序,closeAllDocumentsWithDelegate
(来自 NSDocumentController
)应该为所有打开的文档调用 canCloseDocumentWithDelegate
of NSDocument
。
在我基于 NSPersistentDocument
的应用程序中,我需要覆盖 canCloseDocumentWithDelegate
以警告用户,以防某些服务器功能在文档关闭时仍然 运行。这与任何数据更改无关。
这在用户关闭单个文档时有效;我可以显示 sheet 警告并让用户取消关闭过程。
但是,我的 canCloseDocumentWithDelegate
版本在应用程序退出时不会被调用。这可能是什么原因?
根据 Apple 开发人员技术支持,这是一个已知问题。我终于把app退出菜单项的自动连线砍掉了,全部自己处理。我需要使文档的服务器功能信息从外部可用(在本例中为 optionButton
的状态)并将此功能添加到 AppDelegate
:
- (IBAction)terminateGracefully:(id)sender {
BOOL optionOn = FALSE;
for (Document *doc in NSApp.orderedDocuments) {
if (doc.optionButton.state == NSControlStateValueOn) {
optionOn = TRUE;
}
}
if (optionOn) {
NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:@"Checkbox in some window is on"];
[alert setInformativeText:@"Something is going on. If you close the app now, it will stop. Close anyway?\n"];
[alert setAlertStyle:NSAlertStyleCritical];
[alert addButtonWithTitle:@"Don't close"];
[alert addButtonWithTitle:@"Close anyway"];
NSModalResponse resp = [alert runModal];
if (resp == NSAlertSecondButtonReturn) {
// We really want to close
[NSApp terminate:sender];
}
} else {
[NSApp terminate:sender];
}
}
然后我将应用程序的退出菜单项绑定到terminateGracefully: