Possible Duplicate:
Disable UITextField keyboard?
How to prevent floating keyboard in one of the few TextFields, if you have several TextFields?
Possible Duplicate:
Disable UITextField keyboard?
How to prevent floating keyboard in one of the few TextFields, if you have several TextFields?
Set the text field's delegate to self
and implement
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
return NO;
}