How do I dismiss the iOS keyboard?

与世无争的帅哥 提交于 2019-11-26 10:20:29

问题


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.


回答1:


[myTextField resignFirstResponder]

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




回答2:


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.




回答3:


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];



回答4:


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!




回答5:


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];
}



回答6:


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)



回答7:


as a last resort 💩

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



回答8:


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]);



回答9:


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];



回答10:


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.




回答11:


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

[yourTextFieldName resignFirstResponder];



回答12:


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

call this method (methodName) with didEndOnExit




回答13:


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
}



回答14:


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

    [textField reloadInputViews];
}



回答15:


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.




回答16:


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

  2. Realize this method:

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


来源:https://stackoverflow.com/questions/6906246/how-do-i-dismiss-the-ios-keyboard

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!