AppDelegate 中实现的这段代码有什么问题?警报很快出现在窗口上方,然后消失。永远不会调用 alertDidEnd 回调方法。
我试图在 Xcode 4.6.1 中清理产品并重建它,但没有成功。
- (void) alertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo
{
[[alert window] orderOut:self];
alertResult = returnCode;
NSLog(@"alertDidEnd called");
}
- (void) showAlert
{
NSAlert *saveAlert = [[NSAlert alloc] init];
[saveAlert setAlertStyle:NSWarningAlertStyle];
[saveAlert setMessageText:messageText];
[saveAlert setInformativeText:informativeText];
[saveAlert addButtonWithTitle:defaultButtonTitle];
[saveAlert addButtonWithTitle:secondButtonTitle];
[saveAlert beginSheetModalForWindow:[self window]
modalDelegate:self
didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:)
contextInfo:nil];
}
我自己回答。问题出在 applicationShouldTerminate 方法的其他地方。
- (NSApplicationTerminateReply )applicationShouldTerminate:(NSApplication *) sender
{ if(conditionOK)
doSomeStuff;
else // all changes are not saved
{ [self showAlert];
handleButtonClicked;
}
return NSTerminateNow;
}
在 if 语句的 else 分支中,执行 showAlert 但也“返回 NSTerminateNow”。应用程序不会等到单击警报中的按钮。它立即返回。所以我测试了一个尚未发布的回复。
我将修改 applicationShouldTerminate 方法。
- (NSApplicationTerminateReply )applicationShouldTerminate:(NSApplication *) sender
{ if(conditionOK)
doSomeStuff;
return NSTerminateNow;
else
{ [self showAlert];
return NSTerminateCancel;
}
}
alertDidEnd 回调方法将测试返回的按钮,完成工作并在必要时发送终止信号。
目前,我还没有解决问题,但我知道问题出在哪里。
只是一个问题: beginSheetModalForWindow 始终是异步的,还是仅在 applicationShouldTerminate 的上下文中是异步的?