My code:
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"File" inManagedObjectContext:[self managedObjectContext]];
[fetchRequest setEntity:entity];
cellText = @"Crysis 3 - 'The Nanosuit' Gameplay Trailer";
NSPredicate *predicate = [NSPredicate predicateWithFormat:cellText];
[fetchRequest setPredicate:predicate];
And after build i have error
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "Crysis 3 - 'The Nanosuit' Gameplay Traile"'
How to fix it?