开发者

iphone core data loop array and save each

I have a core data model with two tables (meal and ingredients). I am trying to save O开发者_Python百科NE meal with MANY ingredients. I have the code below which loops through an array of ingredients. I'm trying to save it, but I cannot redeclare the "entity" below. How do I do it? I've tried releasing it, but that didn't work! Thanks for any help.

 for (x=0;x<ingredients;x++) {
  NSEntityDescription *entity = [NSEntityDescription insertNewObjectForEntityForName:@"Ingredient" inManagedObjectContext:managedObjectContext];
  entity.name = @"test";
 }

(this method does work saving ONE record out of the loop.. so that's not the problem)


You don't insert entities into contexts. You insert managed objects into contexts.

You should have something like:

NSManagedObject *myMO;
for (x=0;x<ingredients;x++) {
  myMo = [NSEntityDescription insertNewObjectForEntityForName:@"Ingredient" inManagedObjectContext:managedObjectContext];
  [myMO setValue:@"test" forKey:@"name"];
}

Of course, if have an NSManagedObject subclass you can just set the 'name' property directly.

The important thing is not confuse entities with instances of NSManagedObject or its subclasses. Entities are just descriptions of how objects relate to each other inside the object graph of the managed object context. The context uses the entity descriptions to figure out how all the actual instances fit relate to one another and how they are fetched and stored.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜