I have a question about NSPredicate.
I use this predicate to take all result with status=="Compare"
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription @"MyEntity"
inManagedObjectContext:context];
[request setEntity:entity];
NSPredicate *predicate =
[NSPredicate predicateWithFormat:@"status == %@",@"Created"];
[request setPredicate:predicate];
but Now I would to take all result that status is equal to "Created" OR "Readed".
How I have to change my predicate?