Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Handling Key Events ====== * any subclass of NSResponder can accept events ===== key events from NSWindow ===== * subclass NSWindow, with MyWindow * in IB, set the window to use the custom class, MyWindow * override the following method in MyWindow:<code objc> - (void)keyDown:(NSEvent *)event { switch ([event keyCode]) { case 121:{ // page down if([event modifierFlags] & NSCommandKeyMask) // only do something if the command key was also pressed // do something break; } } } </code> ===== key events from a custom view ===== * make the view the first responder * there may be a better way to do this, but you can use this:<code> [view becomeFirstResponder]; or [window makeFirstResponder:view]; </code> * override the keyDown method in the view (see NSWindow above for example) docs/programming/cocoa_and_objective-c/handling_key_events.txt Last modified: 2008/08/03 00:25by 127.0.0.1