0

コアデータオブジェクトに保存した値をフェッチしようとしていますが、このエラーが発生しています

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  

        }

どんな助けでもいただければ幸いです

4

1 に答える 1

4

内の場所への参照を渡す前に、エラーを宣言する必要がありますexecuteFetchRequest

そのようです:

NSError *error;
于 2012-09-27T03:25:07.663 に答える