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

controlTextDidBeginEditing:

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

Declaration 宣言

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

Parameters パラメータ

aNotification

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

Discussion 解説

This method is invoked when the user begins editing text in a control such as a text field or a form field. The control posts a NSControlTextDidBeginEditingNotification 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 controlTextDidEndEditing: for an explanation of why you may not always get one invocation of controlTextDidBeginEditing: for each invocation of controlTextDidEndEditing:.

See Also 参照

Deprecated Methods 非推奨メソッド