I have UITextField which have keyboard type Numpad. I want to be able to hide the keyboard, when user is done.
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
As numpad doesnt have a Return key to mark keyboard action as done. What can I do to pass a action to delegate resignFirstResponder