我正在尝试将我保存的值保存到核心数据对象中,但是我收到此错误
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
}
任何帮助将不胜感激
答案 0 :(得分:4)
在将引用传递到executeFetchRequest
中的位置之前,您需要声明错误。
像这样:
NSError *error;