私のコード:
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];
そしてビルド後、エラーが発生しました
キャッチされなかった例外'NSInvalidArgumentException'が原因でアプリが終了しました、理由:'フォーマット文字列"Crysis 3-'The Nanosuit'GameplayTraile"'を解析できません
それを修正する方法は?