How do I dismiss the iOS keyboard?

IosKeyboard

Ios Problem Overview


I have a UITextfield that i'd like to dismiss the keyboard for. I can't seem to make the keyboard go away no matter what code i use.

Ios Solutions


Solution 1 - Ios

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 a view controller's method, it would look like this:

[self.view endEditing:YES];

The parameter forces the text field to resign first responder status. If you were using a delegate to perform validation and wanted to stop everything until the text field's contents were valid, you could also code it like this:

BOOL didEndEditing = [self.view endEditing:NO];
if (didEndEditing) {
    // on to the next thing...
} else {
    // text field must have said to first responder status: "never wanna give you up, never wanna let you down"
}

The endEditing: method is much better than telling individual text fields to resignFirstResponder, but for some reason I never even found out about it until recently.

Solution 2 - Ios

[myTextField resignFirstResponder]

Here, second paragraph in the Showing and Hiding the Keyboard section.

Solution 3 - Ios

There are cases where no text field is the first responder but the keyboard is on screen. In these cases, the above methods fail to dismiss the keyboard.

One example of how to get there:

  1. push the ABPersonViewController on screen programmatically; open any contact;
  2. touch the "note" field (which becomes first responder and fires up the keyboard);
  3. swipe left on any other field to make the "delete" button appear;
  4. by this point you have no first responder among the text fields (just check programmatically) but the keyboard is still there. Calling [view endEditing:YES] does nothing.

In this case you also need to ask the view controller to exit the editing mode:

[viewController setEditing:NO animated:YES];

Solution 4 - Ios

I've discovered a case where endEditing and resignFirstResponder fail. This has worked for me in those cases.

ObjC
[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];    
[self setEditing:NO];
Swift
UIApplication.shared.sendAction(#selector(resignFirstResponder), to: nil, from: nil, for: nil)

Solution 5 - Ios

I suggest you add and action on your header file:

-(IBAction)removeKeyboard;

And in the implementation, write something like this:

-(IBAction)removeKeyboard
{
[self.textfield resignFirstResponder];
}

In the NIB file, connect from the UITextFiled to the File's Owner on the option DidEndOnExit. That way, when you press return, the keyboard will disappear.

Hope it helps!

Solution 6 - Ios

In your view controller YourViewController.h file, make sure you implement UITextFieldDelegate protocol :

@interface YourViewController : <UITextFieldDelegate>

@end

Then, in YourViewController.m file, implement the following instance method:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.yourTextField1 resignFirstResponder];
    [self.yourTextField2 resignFirstResponder];
    ...
    [self.yourTextFieldn resignFirstResponder];
}

Solution 7 - Ios

To resign any text field in the app

UIApplication.shared.keyWindow?.endEditing(true)

This approach is clean and guarantied to work because the keyWindow is, by definition, the root view of all possible views displaying a keyboard (source): >The key window receives keyboard and other non-touch related events. Only one window at a time may be the key window.

Solution 8 - Ios

This will resign one particular text field

// Swift
TextField.resignFirstResponder()

// Objective C
[TextField resignFirstResponder];

To resign any text field use below code

// Swift
self.view!.endEditing(true)

// Objective C
[self.view endEditing:YES];

Solution 9 - Ios

as a last resort 

let dummyTextView = UITextView(frame: .zero)
view.addSubview(dummyTextView)
dummyTextView.becomeFirstResponder()
dummyTextView.resignFirstResponder()
dummyTextView.removeFromSuperview()

Solution 10 - Ios

If you don't know which textField is the first responder you can find it. I use this function:

UIView *resignFirstResponder(UIView *theView)
{
    if([theView isFirstResponder])
    {
        [theView resignFirstResponder];
        return theView;
    }
    for(UIView *subview in theView.subviews)
    {
        UIView *result = resignFirstResponder(subview);
        if(result) return result;
    }
    return nil;
}

Then in your code call:

    UIView *resigned = resignFirstResponder([UIScreen mainScreen]);

Solution 11 - Ios

You just replace yourTextFieldName with, you guessed it! your textfield. This will close the keyboard.

[yourTextFieldName resignFirstResponder];

Solution 12 - Ios

-(void)methodName
{
    [textFieldName resignFirstResponder];
}

call this method (methodName) with didEndOnExit

Solution 13 - Ios

For Swift 3

You can hide the keyboard like this:

textField.resignFirstResponder()

If you want to hide the keyboard when the user press the "intro" button, you have to implement the following UITextFieldDelegate method:

func textFieldShouldReturn(_ textField: UITextField) -> Bool {
    
    textField.resignFirstResponder()
    
    return true
}

Solution 14 - Ios

-(void)textFieldDidBeginEditing:(UITextField *)textField
{
    // your code

    [textField reloadInputViews];
}

Solution 15 - Ios

3 Simple & Swift steps

Add UITextFieldDelegate to your class as below:

class RegisterVC: UIViewController, UITextFieldDelegate {
    //class implementation 
}

in class implementation, add the delegate function textFieldShouldEndEditing::

internal func textFieldShouldReturn(_ textField: UITextField) -> Bool {
    self.view.endEditing(true)
    return true
}

and as a last step, set your UITextField(s) delegate(s) to self, in somewhere appropriate. For example, inside the viewDidLoad function:

override func viewDidLoad(){
    super.viewDidLoad()
    myTextField1.delegate = self
    myTextField2.delegate = self
    ..
    ..
}

Now, whenever user hits the return key, keyboard will dismiss.

I prepared an example snippet too, you can check it from [here][1].

[1]: https://gist.github.com/MertCelik/a3fb63f2d660a1690369d6813ae4261f "How to dismiss keyboard on iOS"

Solution 16 - Ios

  1. Set up the "Did End On Exit" event in Xcode (right click on your text field).

    Screenshot

  2. Realize this method:

     -(IBAction) closeKeyboard:(id) sender {
         [_txtField resignFirstResponder];
     }
    

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTyler McMasterView Question on Stackoverflow
Solution 1 - IosbenzadoView Answer on Stackoverflow
Solution 2 - IosEvan MulawskiView Answer on Stackoverflow
Solution 3 - Iosuser2216794View Answer on Stackoverflow
Solution 4 - IosAndres CanellaView Answer on Stackoverflow
Solution 5 - IosibjazzView Answer on Stackoverflow
Solution 6 - IosThomas.BenzView Answer on Stackoverflow
Solution 7 - IosCœurView Answer on Stackoverflow
Solution 8 - IosMilap KundaliaView Answer on Stackoverflow
Solution 9 - IosochimasuView Answer on Stackoverflow
Solution 10 - IosBadPirateView Answer on Stackoverflow
Solution 11 - IosA.sharifView Answer on Stackoverflow
Solution 12 - IosPrabhjot Singh GoganaView Answer on Stackoverflow
Solution 13 - IospableirosView Answer on Stackoverflow
Solution 14 - Iosjeet.chanchawatView Answer on Stackoverflow
Solution 15 - IosMert CelikView Answer on Stackoverflow
Solution 16 - IosioszhukView Answer on Stackoverflow