Instance Method インスタンスメソッド

controlTextDidEndEditing:

Sent when a control with editable text ends an editing session.

Declaration 宣言

- (void)controlTextDidEndEditing:(NSNotification *)obj;

Parameters パラメータ

aNotification

The notification object. The name of the notification is always NSControlTextDidEndEditingNotification.

Discussion 解説

This method is invoked when the user stops editing text in a control such as a text field or form. The control posts a NSControlTextDidEndEditingNotification notification, and if the control’s delegate implements this method, it is automatically registered to receive the notification. Use the key @"NSFieldEditor" to obtain the field editor from the userInfo dictionary of the notification object.

See Also 参照

Deprecated Methods 非推奨メソッド