docs:programming:cocoa_and_objective-c:handling_key_events

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:cocoa_and_objective-c:handling_key_events [2007/05/24 14:18] billhdocs:programming:cocoa_and_objective-c:handling_key_events [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 17: Line 17:
 } }
 </code> </code>
 +
  
 ===== key events from a custom view ===== ===== key events from a custom view =====
   * make the view the first responder   * make the view the first responder
     * there may be a better way to do this, but you can use this:<code>     * there may be a better way to do this, but you can use this:<code>
-[[self window] selectKeyViewFollowingView:self];+[view becomeFirstResponder];
  
 or or
  
-[[self window] selectKeyViewPrecedingView:self];+[window makeFirstResponder:view];
 </code> </code>
   * override the keyDown method in the view (see NSWindow above for example)   * override the keyDown method in the view (see NSWindow above for example)
  • docs/programming/cocoa_and_objective-c/handling_key_events.1180037909.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)