I have an app where users enter a bunch of information and then log it. There are situations where they sometimes need to enter information quickly and move on to another entry. With the iPad out and with it supporting keyboards I've recevied a feature request to support keyboard shortcuts, like Command-S for "Save Entry". Any ideas on doing this? Any way to intercept keystrokes as their coming in to the application and then
Code:
if(cmdS)
{
saveEntry();
}
?
Thank you,
Nick