When a editable NSTextField is selected Cocoa marks it as a default by making a blue rectangular around the text field.
But when editing ended the indicator can not be removed unless another text field has been selected.
To remove selection indicator what should we do ?
We are using following function to detect the editing's end.
override func controlTextDidEndEditing(notification: NSNotification) {
// doing things like getting the string user has been made.
}
nil
which deselects the text field? – vadian