NSAlert:将第二个按钮设为默认按钮和取消按钮

问题描述 投票:0回答:1

Apple 最初的 HIG(遗憾的是,现已从网站上消失)指出:

对话框中最右侧的按钮(操作按钮)是确认警报消息文本的按钮。操作按钮通常(但并非总是)是默认按钮

就我而言,我有一些破坏性操作(例如擦除磁盘)需要“安全”确认对话框,如下所示:

最糟糕的选择是创建一个对话框,其中最右边的按钮将成为“不删除”按钮,而左边的按钮(通常是“取消”按钮)将成为“删除”按钮,因为这会很容易导致灾难(发生在我身上,有一次微软制作的对话框),因为人们被训练在想要取消操作时单击第二个按钮。

所以,我需要的是左(取消)按钮成为默认按钮,并且还对 Return、Esc 和 cmd-period 键做出反应。

为了使其成为默认值并对 Return 键做出反应,我只需将第一个按钮的

keyEquivalent
设置为空字符串,将第二个按钮设置为“ ”.

但是如何在 Esc 或 cmd- 时取消警报。已打字?

macos cocoa nsalert
1个回答
2
投票

按照通常的方式设置 NSAlert,并分配默认按钮。 创建一个带有空边界的 NSView 的新子类,并将其添加为 NSAlert 的附属视图。 在子类的

performKeyEquivalent
中,检查 Esc,如果匹配则调用
[-NSApplication stopModalWithCode:]
[-NSWindow endSheet:returnCode:]

#import "AppDelegate.h"

@interface AlertEscHandler : NSView
@end

@implementation AlertEscHandler
-(BOOL)performKeyEquivalent:(NSEvent *)event {
    NSString *typed = event.charactersIgnoringModifiers;
    NSEventModifierFlags mods = (event.modifierFlags & NSEventModifierFlagDeviceIndependentFlagsMask);
    BOOL isCmdDown = (mods & NSEventModifierFlagCommand) != 0;
    if ((mods == 0 && event.keyCode == kVK_Escape) || (isCmdDown && [typed isEqualToString:@"."])) { // ESC key or cmd-.
        #if 0 // if this was invoked as a sheet window…
            [self.window.sheetParent endSheet:self.window returnCode:NSAlertSecondButtonReturn];
        #else
            [NSApp stopModalWithCode: NSAlertSecondButtonReturn];
        #endif
        return YES;
    }
    return [super performKeyEquivalent:event];
}
@end

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    [self alertTest];
    [NSApp terminate:0];
}

- (void)alertTest {
    NSAlert *alert = [NSAlert new];
    alert.messageText = @"alert msg";
    [alert addButtonWithTitle:@"OK"];
    NSButton *cancelButton = [alert addButtonWithTitle:@"Cancel"];
    alert.window.defaultButtonCell = cancelButton.cell;
    alert.accessoryView = [AlertEscHandler new];
    NSModalResponse choice = [alert runModal];
    NSLog (@"User chose button %d", (int)choice);
}
© www.soinside.com 2019 - 2024. All rights reserved.