- setNeedsDisplay
- calcSize
- drawCellInside:
- controlTextDidBeginEditing:
Availability
Technology
- (void)controlTextDidEndEditing:(NSNotification
*)obj;
aNotification
The notification object. The name of the notification is always NSControl
.
This method is invoked when the user stops editing text in a control such as a text field or form. The control posts a NSControl
notification, and if the control’s delegate implements this method, it is automatically registered to receive the notification. Use the key @"NSField
to obtain the field editor from the user
dictionary of the notification object.
Warning
In some cases, such as when editing within an instance of NSOutline
, this method may be invoked without a previous invocation of control
. You will only get the control
notification if the user actually types something, but you can get the control
notification if the user just double-clicks the field and then clicks outside the field, without typing.
- setNeedsDisplay
- calcSize
- drawCellInside:
- controlTextDidBeginEditing: