コアデータオブジェクトに保存した値をフェッチしようとしていますが、このエラーが発生しています
Use of undeclared identifier 'error'
これは、以下のコードの平和で&errorを参照する場所を指しています
// Test listing all FailedBankInfos from the store
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Manuf" inManagedObjectContext:context];
[fetchRequest setEntity:entity];
NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];
for (Manuf *manuf in fetchedObjects) {
// Log all of the values in the object
}
どんな助けでもいただければ幸いです