gpt4 book ai didi

iphone - 从核心数据对象中读取

转载 作者:行者123 更新时间:2023-11-28 19:15:10 24 4
gpt4 key购买 nike

我试图获取我保存到我的核心数据对象中的值,但是我收到了这个错误

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

}

任何帮助将不胜感激

最佳答案

executeFetchRequest 中传递对错误位置的引用之前,您需要声明错误。

像这样:

NSError *error;

关于iphone - 从核心数据对象中读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12613611/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com