我试图一个接一个地显示 2 张(面板)。但是,看起来第一张纸在第二张纸出现之前没有足够的时间关闭 - 所以,它最终变得一团糟。
这是我的代码...
宏
#define DRK_ALERT_YESNO_SHOW(X,Y,W) \
NSAlert* yesnoAlert = [NSAlert alertWithMessageText:X \
defaultButton:@"Yes" \
alternateButton:@"No" \
otherButton:nil \
informativeTextWithFormat:Y]; \
[yesnoAlert beginSheetModalForWindow:[[NSApp delegate] window] \
modalDelegate:self \
didEndSelector:W \
contextInfo:nil];
// Open File Sheet
#define DRK_OPENFILE_SHEET_BEGIN(X,Y,Z,A) NSOpenPanel *openPanel = [NSOpenPanel openPanel];\
[openPanel setAllowsMultipleSelection: NO];\
[openPanel setCanChooseDirectories:NO];\
[openPanel setCanCreateDirectories:NO];\
[openPanel setCanChooseFiles:YES];\
[openPanel setShowsHiddenFiles:YES];\
[openPanel setPrompt:Y];\
[openPanel setAllowedFileTypes:A];\
[openPanel beginSheetModalForWindow:X completionHandler:^(NSInteger result) {\
if (result == NSFileHandlingPanelOKButton) {\
NSString* Z = [openPanel filename];
#define DRK_OPENFILE_SHEET_END }\
}];
实际代码
- (IBAction)openDo:(id)sender {
DRK_ALERT_YESNO_SHOW(@"Are you sure you want to discard changes?",
@"You may lose any changes you have made to your current projects.",
@selector(shouldOpenDo:code:context:));
}
- (void)shouldOpenDo:(NSAlert*)alert code:(int)choice context:(void *)context
{
if (choice==NSAlertDefaultReturn)
{
DRK_OPENFILE_SHEET_BEGIN(([[NSApp delegate] window]), @"Open Project", filename,(@[@"txt"]));
// Yep, we can now open the file: filename
DRK_OPENFILE_SHEET_END
}
else
{
// nope, don't open anything
}
}
有任何想法吗?