gpt4 book ai didi

ios - NSEntityDescription 为零

转载 作者:可可西里 更新时间:2023-11-01 00:21:45 28 4
gpt4 key购买 nike

我的变量 entityDescription 似乎是 nil,所以我在编译时出现 fatal error 。有谁知道解决方案? persistentContainer 在同一个类 (AppDelegate) 中声明。

let entityDescription = NSEntityDescription.entity(forEntityName: "Person", in: self.persistentContainer.viewContext)
let newPerson = NSManagedObject(entity: entityDescription!, insertInto: self.persistentContainer.viewContext)
newPerson.setValue("Thomas", forKey: "first")

最佳答案

请检查方法名,下面的代码为我创建了一个 NSEntityDescription 对象。

let desc:NSEntityDescription? = NSEntityDescription.entityForName("Person", inManagedObjectContext: self.managedObjectContext);
print(desc)

关于ios - NSEntityDescription 为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38339167/

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