I crash with this post:
'NSInvalidArgumentException', reason: 'key string name not found in object
Obvisouly I am not accessing my object correctly.
//fetching Data NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSManagedObjectContext *context = [(AppDelegate *)[[UIApplication sharedApplication] delegate] managedObjectContext]; NSEntityDescription *entity = [NSEntityDescription entityForName:@"Viewer" inManagedObjectContext:context]; [fetchRequest setEntity:entity]; NSString *attributeName = @"dF"; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name like %@",attributeName]; [fetchRequest setPredicate:predicate]; NSLog(@"predicate : %@",predicate); NSError *error; NSArray *items = [context executeFetchRequest:fetchRequest error:&error]; NSLog(@"items : %@",items); [fetchRequest release]; //end of fetch
And here is my Model data: 
I want to return the value "dF", shouldn't I call it that?
NSString *attributeName = @"dF"; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name like %@",attributeName];
source share