Hello,
in my application I have a NSObjectController bound to all controls on the user interface. This works fine so far. The only problem I have is binding the selection of an NSComboBox to the same ObjectController. As far as I found out today the value of a ComboBox is always a string so the field in the Class of the OBjectController is also an NSString.Sounds easy for me but doesn't work.
I always get an "... class is not key value coding-compliant for the key ..."
The items in the ComboBox itself come from an other Controller, a NSArrayController. But that part works fine. All the items from the Array are items in the ComboBox. The Problem I have is getting the selection into to ObjectController.