I have a view-based table with an NSDictionaryController, the content of which is bound to NSUserDefaultsController in Interface Builder:
What is the correct way of validating the dictionary values in Swift? (The dictionary keys are automatically validated, and an error is raised for empty keys. I want to do the same for the dictionary values.)
Set the delegate of the text field in the cell to the delegate of the table view and implement
control(_:isValidObject:)
.