vote up 1 vote down star

Below is the sample code.

- (void) keyDown: (NSEvent *) event
{
    NSString *chars = [event characters];
    unichar character = [chars characterAtIndex: 0];

    if (character == 27) {
        NSLog (@"ESCAPE!");
    }
}

Should I need to set any delegate in InterfaceBuilder or any kinda binding??

Help Appreciated...

flag
2  
Where is your keyDown: method implemented? – Perspx Jul 1 at 14:32

1 Answer

vote up 1 vote down check

keyDown needs to be overridden in an NSView subclass whose object is set as first responder. The responder chain should pass down the event, but to be sure you get it, make sure that your object is first responder.

link|flag
Thanks a lot for these valuable inputs... – lance Jul 1 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.