Skip to content

Instantly share code, notes, and snippets.

View henneonrails's full-sized avatar

Holger Haenisch henneonrails

  • Germany / Dormagen
View GitHub Profile
@interface NSManagedObject (Serialization)
- (NSDictionary*) toDictionary;
- (void) populateFromDictionary:(NSDictionary*)dict;
+ (NSManagedObject*) createManagedObjectFromDictionary:(NSDictionary*)dict
inContext:(NSManagedObjectContext*)context;
@end