Dismissing the First Responder/Keyboard with multiple Textfields

安稳与你 提交于 2019-12-03 00:29:56
clickedDone.returnKeyType = UIReturnKeyDone;  // in viewDidLoad

- (BOOL)textFieldShouldReturn:(UITextField *)textField 
{
   [textField resignFirstResponder];
   return YES;    
}

The view has an endEditing: method you can use. The docs say

Causes the view (or one of its embedded text fields) to resign the first responder status.

In your view controller you can just call:

[[self view] endEditing:YES];
Saleh Masum

Its very easy now. You can follow different approach depending on your use cases. In my case I had multiple textfields in UITableViewController. What I did is this :

- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];

    [self.view endEditing:YES];
}
ejps

Best answer is:

  1. Added UITextFieldDelegate protocol to your viewcontroller @interface ViewController : UIViewController
  2. In your xib, select the textField, in your Ulitlites section in the right side pane of XCode in the subsection of "Connections Inspector", link the textField's delegate with the .xib's "File's Owner".
  3. In your Viewcontroller implementation, include the follwing

- (BOOL)textFieldShouldReturn:(UITextField *)textField 
{
   [textField resignFirstResponder];
   return YES;    
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!