私はJamesの助言に基づいて次のように書いています。ジェームズありがとう! (ID)、送信者 {
//! Apple standard template code
NSManagedObjectContext *context = [self.fetchedResultsController managedObjectContext];
NSEntityDescription *entity = [[self.fetchedResultsController fetchRequest] entity];
NSManagedObject *newManagedObject = [NSEntityDescription insertNewObjectForEntityForName:[entity name] inManagedObjectContext:context];
//! Slowburner addition to view the managedObject's keys
NSEntityDescription *attDesc = [newManagedObject entity];
NSDictionary *attributesByName = [attDesc attributesByName];
NSLog(@"Names:%@",[attributesByName allKeys]);
//! shortcut to avoid whatever problem you're troubleshooting
return;
:(空)insertNewObject - Appleのマスター・ディテール・テンプレートプロジェクト から
//