NSButton key equivalent

3.8k Views Asked by At

I can't make a key equivalent work on an NSButton that I have created programatically. Can anyone advise me of what I'm doing wrong? The button works as intended when pressed, but the key equivalent will not work.

NSButton *ESCButton = [[NSButton alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)];
[[quickEntryWindow contentView] addSubview:ESCButton];
[[ESCButton cell] setKeyEquivalent:@"\E"];
[ESCButton setTarget:self];
//[ESCButton setTransparent:YES];
[ESCButton setAction:@selector(hideQuickEntryWindow)];
[quickEntryWindow setDefaultButtonCell:[ESCButton cell]];
[quickEntryWindow enableKeyEquivalentForDefaultButtonCell];
1

There are 1 best solutions below

0
On BEST ANSWER

-setDefaultButtonCell: turns the cell into the window default button cell, which necessarily has key equivalent \r (Return/Enter). If you want to use another key equivalent, remove

[quickEntryWindow setDefaultButtonCell:[ESCButton cell]];
[quickEntryWindow enableKeyEquivalentForDefaultButtonCell];