Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS SDK: Dismiss keyboard when a button gets clicked?

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

like image 703
Daniel Mühlbachler Avatar asked Jun 15 '11 11:06

Daniel Mühlbachler


3 Answers

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.

like image 187
benzado Avatar answered Sep 18 '22 03:09

benzado


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.

like image 25
SriPriya Avatar answered Sep 20 '22 03:09

SriPriya


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)
like image 43
KawaiKx Avatar answered Sep 18 '22 03:09

KawaiKx