Is it possible to get continuous key presses?
I\'m using keyCommands: to intercept the arrows keys being pressed on an external keyboard, but I only ge
Pro tip - my arrow keys were blocked because I'd returned false from
-(BOOL) canPerformAction:(SEL)action withSender:(id)sender
Make sure to check for your own selectors you've created.