You cannot remove the "hide keyboard" button from the standard iPad keyboard; it is not authorized by Apple.
However, there is one way to determine when the Hide Keyboard button is pressed:
- (void)textFieldDidEndEditing:(UITextField *)textField
{
[textField resignFirstResponder];
}
source
share