-4

Possible Duplicate:
Disable UITextField keyboard?

How to prevent floating keyboard in one of the few TextFields, if you have several TextFields?

Community
  • 1
  • 1

1 Answers1

1

Set the text field's delegate to self and implement

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
  return NO;
}
Monolo
  • 18,205
  • 17
  • 69
  • 103
SreeHarsha
  • 496
  • 4
  • 19