I've got an NSOutlineView bound to an NSTreeController in entity mode in an persistent document with core data. I can add and delete new items. Unfortunately, if I change the caption of an NSOutLineView item this change is not trapped at all. That is, if I close the document, there is no dialog asking me to save the changings and documentIsEdited is not changed either. Only if I insert and delete an new object in the treecontroller class, the change is recognized.
But this is surely not the way to deal with the change-management of objects?
Any hint would be aprreciated.
Klaus
I've found the solution myself. Everything works fine with NStreeController and Outlineview, but the managedObject, I wanted to store, was not complete. One madantory attribute was missing, so the context did not change and save. There were no dialog boxes indicating the problem, so if you meet the same problem, make sure all attributes are filled.
Klaus-Dieter