I'm having this strange issue where I have an NSArrayController bound to a managedObjectContext and using the array controller to populate an NSTableView. I can create an object and insert it and it will add the new object and update one of the columns bound to the controller but not the others! I know the fields are being set and bindings are working correctly (perhaps) because if I close the app and restart the app everything is correctly populated.
I'm not sure what I'm missing! How can I debug the bindings? From what I've found here: https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdTroubleshooting.html#//apple_ref/doc/uid/TP40002320-SW6 it basically just says could be your controller or key value coding compliance.
Here is the code creating the entity:
NSManagedObjectContext* context = [[BugManager shared] managedObjectContext];
NSError* error;
Bug* newBug = [NSEntityDescription insertNewObjectForEntityForName:@"Bug" inManagedObjectContext:context];
[newBug setValuesForKeysWithDictionary:data];
[context save:&error];
I have verified that all the fields are set correctly and saved. I also tried to set the values explicitly to see if it was a key value observing issue to no avail.
This is the column that is updating correctly:

Here is the one that isn't updating correctly:

And the array controller:

I can rearrange the table columns and it still only updates one, the target field (the one it was updating previously). I just want the table to update all the columns correctly but it is being more difficult than expected!