-(void)createPerson:(Person *)person inContext:(NSManagedContext*)context{
//Create new Object
NSManagedObject * newPerson = [NSEntityDescription insertNewObjectForEntityForName: @"Person" inManagedObjectContext: context];
//String Value
[newPerson setValue:[person name] forKey:@"name"];
//Id Value (index)
int personID = [newPerson hash];
[newPerson setValue:[NSNumber numberWithInt: personID] forKey:@"id"];
}
No comments:
Post a Comment