I've tried [myButton setKeyEquivalent:@"\n"] but that didn't work. I feel like there should be some predefined constant for it that I'm just missing.
Thanks.
Try using "\r" instead of "\n" in this case.
I believe [myButton setKeyEquivalent:@"\r"] should do what you are looking for.
Example for Swift 2.0:
let key = String(utf16CodeUnits: [unichar(NSEnterCharacter)], count: 1) as String
item.keyEquivalent = key
item.keyEquivalentModifierMask = Int(NSEventModifierFlags.CommandKeyMask.rawValue | NSEventModifierFlags.ControlKeyMask.rawValue)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With