I have a Table View Cell and have added an action to it that I want to execute when a value is changed.
I have added the action method in the viewController
@IBAction func valueEntered(sender: NSTextFieldCell)
{
print("valueEntered")
}
I can edit the Table View Cell by double clicking on it, but my method is never called.
I know I have done this before but I must be missing a step.