Importing data with coredata


/ Published in: Objective C
Save to your folder(s)

A database table is basically an array of dictionary objects. As long
as all the fields are valid property list types, you can loop through
the array creating a managed object for each dictionary and setting
the values. If you have an array controller in your nib and it's
configured for your managed object, you can use this (where plist is
expected to be an NSArray* - not sure why I made it an id).


Copy this code and paste it in your HTML
  1. - (void)addItemsFromPlist:(id)plist toController:(NSArrayController *)
  2. controller;
  3. {
  4. NSEnumerator *oe = [plist objectEnumerator];
  5. NSDictionary *dictionaryItem = nil;
  6. while(dictionaryItem = [oe nextObject]) {
  7. NSManagedObject *mo = [[controller newObject] autorelease];
  8. [mo setValuesForKeysWithDictionary:dictionaryItem];
  9. [controller addObject:mo];
  10. }
  11. }

URL: http://www.cocoabuilder.com/archive/message/cocoa/2006/11/5/173980

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.