Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am making an Iphone app and I already have data stored in my core data entity. When the user navigates to a certain scene on my app and clicks a row in a table view I need to fetch all the data from the entity based on the Id and changes one of the properties in the entity.

When the row gets selected I have called this method but I get an error saying * Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key checked. Any Idea how to fix this?

- (id)change:(NSInteger)checked andId:(NSInteger)theID {



NSPredicate *predicate = [NSPredicate predicateWithFormat:@"id == %i",theID];



NSFetchRequest *fetchRequest = [[NSFetchRequest alloc]init];

NSEntityDescription *entity = [NSEntityDescription entityForName:@"Course" inManagedObjectContext:_cdStack.managedObjectContext];



[fetchRequest setEntity:entity];

[fetchRequest setPredicate:predicate];

[fetchRequest setValue:[NSNumber numberWithInt:checked] forKey:@"checked"];

//NSError *error = nil;

return fetchRequest;

}

share|improve this question

1 Answer

The error is because you are calling setValue on a NSFetchRequest and not your NSManagedObject.

Try something like this (I am going off of memory and the SDK, so it might not work exactly right), instead of fetchRequest setValue....

NSArray *objects = [_cdStack.managedObjectContext executeFetchRequest:fetchRequest error:nil];
if (objects) {
    NSManagedObject *object = [objects objectAtIndex:0];
    [object setValue:[NSNumber numberWithInt:checked] forKey:@"checked"];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.