5

How can I dismiss the keyboard when the user clicks a button? A short example for a better understanding: the user edits some text in some textfields and at the end he doesn't click "Done" or smething else on the keyboard, but he clicks on an button "Save" while the keyboard is still shown. So, how can I now dismiss the keyboard?

Thx. Regards, Daniel

Daniel Mühlbachler
  • 655
  • 2
  • 15
  • 22

4 Answers4

6

You can also call [view endEditing:YES] on any view above the text field in the hierarchy. This is useful if you aren't sure which text field has first responder status. It also optionally lets a text field delegate stop the action (by returning NO from shouldEndEditing:) which is nice if you are using a delegate to do validation on the fields.

benzado
  • 74,658
  • 20
  • 105
  • 133
4

in button action write,

if([textField isFirstResponder]){
  [textField resignFirstResponder];
}

if there are more textfields get the current textfield reference everytime while editing started, and resign its responder in button action.

SriPriya
  • 1,232
  • 14
  • 22
  • thx! additionally, I want to dismiss the keyboard when the user taps onto the screen either. I used: UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissKeyBoard)]; //[self.view addGestureRecognizer:tap]; But then the button action doesn't work - maybe the button click is recognized as a tap onto the "blank screen"? – Daniel Mühlbachler Jun 15 '11 at 11:37
  • @Daniel: is the view contains any scrollviews? – SriPriya Jun 15 '11 at 11:46
  • yep, scrollview and textview too. btw... is it possible to make a uiscrollview and within that there are two textviews and the textviews shouldn't be able to scroll independently - instead of that only the uiscrollview should be scrolled so that the rest of the textviews gets visible/shown (so, they get scrolled too)? – Daniel Mühlbachler Jun 15 '11 at 11:54
1

If you have multiple text fields and don't know which one is first responder (or you simply don't have access to the text fields from wherever you are writing this code) you can call endEditing: on the parent view containing the text fields.

In Swift, in the related view controller, add this line to the button function:

self.view endEditing(true)
KawaiKx
  • 8,125
  • 15
  • 64
  • 91
0

In addition to SriPriya's answer, please have here the Swift 2 styled version:

if numberTextField.isFirstResponder() {
    numberTextField.resignFirstResponder()
}

Please enjoy...

Roland
  • 25
  • 1
  • 7