如何清除NSButton的keyEquivalent?

我试过了:

[theButton setKeyEquivalent:nil];


但这似乎不正确!
谢谢

最佳答案

您要查找的命令是:

[theButton setKeyEquivalent:@""];

10-06 13:43