Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 368 Bytes

README.markdown

File metadata and controls

8 lines (5 loc) · 368 Bytes

Designed for use with NSDictionary and Core Data, this class extends the native functionality of NSManagedObjectContext to allow for easy handling of data.

Example

NSDictionary *data = [NSDictionary dictionaryWithObjectsAndKeys:@"myValue", @"myKey", nil];

[managedObjectContext delete:nil inEntity:@"Shop"];
[managedObjectContext add:data toEntity:@"Shop"];