Contents

textFieldDidEndEditing(_:)

Tells the delegate when editing stops for the specified text field.

Declaration

optional func textFieldDidEndEditing(_ textField: UITextField)

Parameters

  • textField:

    The text field for which editing ended.

Discussion

This method is called after the text field resigns its first responder status. You can use this method to update your delegate’s state information. For example, you might use this method to hide overlay views that should be visible only while editing.

Implementation of this method by the delegate is optional. If your delegate also implements the textFieldDidEndEditing(_:reason:) method, UIKit calls that method in preference to this one.

See Also

Managing editing