textDidEndEditing(_:)
Invoked when text editing ends.
Declaration
func textDidEndEditing(_ notification: Notification)Parameters
- notification:
The Textdidendeditingnotification notification.
Discussion
This method’s default behavior is to post an textDidEndEditingNotification along with the receiving object to the default notification center. The posted notification’s user info contains the contents of notification’s user info dictionary, plus an additional key-value pair. The additional key is “NSFieldEditor”; the value for this key is the text object that began editing. After posting the notification, NSMatrix sends an endEditing(_:) message to the selected cell, draws and makes the selected cell key, and then takes the appropriate action based on which key was used to end editing (Return, Tab, or Back-Tab).