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;
}