UITextFieldDelegate.EditingEnded Method

Definition

Overloads

EditingEnded(UITextField)

Indicates that editing has ended in the specified text field.

EditingEnded(UITextField, UITextFieldDidEndEditingReason)

Indicates that editing has ended in the specified text field for the specified reason.

EditingEnded(UITextField)

Indicates that editing has ended in the specified text field.

[Foundation.Export("textFieldDidEndEditing:")]
public virtual void EditingEnded (UIKit.UITextField textField);
abstract member EditingEnded : UIKit.UITextField -> unit
override this.EditingEnded : UIKit.UITextField -> unit

Parameters

textField
UITextField

The text field for which editing ended.

Attributes

Applies to

EditingEnded(UITextField, UITextFieldDidEndEditingReason)

Indicates that editing has ended in the specified text field for the specified reason.

[Foundation.Export("textFieldDidEndEditing:reason:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void EditingEnded (UIKit.UITextField textField, UIKit.UITextFieldDidEndEditingReason reason);
abstract member EditingEnded : UIKit.UITextField * UIKit.UITextFieldDidEndEditingReason -> unit
override this.EditingEnded : UIKit.UITextField * UIKit.UITextFieldDidEndEditingReason -> unit

Parameters

textField
UITextField

The text field for which editing ended.

reason
UITextFieldDidEndEditingReason

The reason that editing ended.

Attributes

Applies to