Keyboard Iphone - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T10:24:18Zhttp://stackoverflow.com/feeds/question/889774http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/889774/keyboard-iphone0Keyboard IphoneHelena2009-05-20T19:28:29Z2009-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#8899131Answer by Brad Smith for Keyboard IphoneBrad Smith2009-05-20T19:54:37Z2009-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 >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 <UITextFieldDelegate>
</code></pre>