Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable UITextField keyboard?

I put a numeric keypad in my app for inputing numbers into a text view, but in order to input numbers I have to click on the text view. Once I do so, the regular keyboard comes up, which I don't want.

How can I disable the keyboard altogether? Any help is greatly appreciated.

like image 709
michael Avatar asked Apr 11 '11 00:04

michael


1 Answers

The UITextField's inputView property is nil by default, which means the standard keyboard gets displayed.

If you assign it a custom input view, or just a dummy view then the keyboard will not appear, but the blinking cursor will still appear:

UIView* dummyView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];     myTextField.inputView = dummyView; // Hide keyboard, but show blinking cursor 

If you want to hide both the keyboard and the blinking cursor then use this approach:

-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField {     return NO;  // Hide both keyboard and blinking cursor. } 
like image 119
RohinNZ Avatar answered Sep 18 '22 06:09

RohinNZ