Re: catching command-enter keyDown events in a table view
Re: catching command-enter keyDown events in a table view
- Subject: Re: catching command-enter keyDown events in a table view
- From: Will Mason <email@hidden>
- Date: Thu, 4 Nov 2004 09:21:23 -0800 (PST)
> > unsigned short keyPress = [event keyCode];
If you take the key code from the event, you're creating a big headache
for yourself, since key codes are hardware dependent. Are you sure you
want to keep track of the key code for your desired key presses for
every keyboard that exists on every Mac in the world? Wouldn't it be
better to let Cocoa do that for you, and use the [NSEvent characters]
message instead? That way you get to work with hardware independent
Unicode values.
Just a thought,
Will
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden