Keyboard Iphone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:24:18Z http://stackoverflow.com/feeds/question/889774 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/889774/keyboard-iphone 0 Keyboard Iphone Helena 2009-05-20T19:28:29Z 2009-05-20T20:17:48Z <p>Is possible to know when the user touch the keyboard iphone? When the user touch some button from keyboard... :/</p> http://stackoverflow.com/questions/889774/keyboard-iphone/889913#889913 1 Answer by Brad Smith for Keyboard Iphone Brad Smith 2009-05-20T19:54:37Z 2009-05-20T20:17:48Z <p>The easiest way is to use a TextField. Even is your UI Does not call for one, you can set it's frame to zero so it doesnt show up onscreen. Then you can get access to the keys pressed by using the text field's delegate callback methods.</p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; //CGRectZero because we don't want the textfield to be shown onscreen UITextField *f = [[UITextField alloc] initWithFrame:CGRectZero]; //We set the delegate so we can grab keypressed f.delegate = self; [self.view addSubview:f]; [f becomeFirstResponder]; //Show the keyboard } - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string { if (string.length &gt;0) { NSLog(@"%@ Pressed",string); } else { NSLog(@"Backspcae pressed"); } } - (BOOL)textFieldShouldReturn:(UITextField *)textField { NSLog(@"return pressed"); return YES; } </code></pre> <p>Note: to avoid a compiler warning, make sure in your .h file the class explicitly says it implements the UITextFieldDelegate protocal. ie:</p> <pre><code>@interface MyViewController : UIViewController &lt;UITextFieldDelegate&gt; </code></pre>