how can I dismiss keyboard on Enter keypress

前端 未结 4 863
无人共我
无人共我 2021-01-15 12:28

I want to dismiss my keyboard as I press RETURN key.

I have tried by putting button in view\'s back side.

But how can I do this by pressing RETURN key?

4条回答
  •  天命终不由人
    2021-01-15 13:03

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

    Don't forget to add the delegate UITextFieldDelegate

提交回复
热议问题