gpt4 book ai didi

ios - 可转换对象上的 CoreData NSPredicate 导致 EXC_BAD_ACCESS

转载 作者:搜寻专家 更新时间:2023-11-01 06:30:43 26 4
gpt4 key购买 nike

使用 NSPredicate 在 Core Data 的 Transformable 中搜索数组元素是否存在的正确方法是什么?

我有一个 EntityAttribute operationalDays,TypeTransformable,它被设置为 自定义类 [Int]enter image description here我用它来存储整数数组。它可以存储但是我在尝试使用 NSPredicate 获取它们时得到 EXC_BAD_ACCESS

我知道

operationalDays is {1,2,3,4}

我正在尝试,但它们都因错误而失败。

//day is an Int (1) in this case

NSPredicate(format: "%d IN operationalDays",day)
NSPredicate(format: "%i IN operationalDays",day)
NSPredicate(format: "%@ IN operationalDays",day)
NSPredicate(format: "operationalDays CONTAINS %d",day)
NSPredicate(format: "operationalDays CONTAINS %i",day)
NSPredicate(format: "operationalDays CONTAINS %@",day)

当我在崩溃后检查谓词时,我得到了

predicate: (1 IN operationalDays);

predicate: (operationalDays CONTAINS 1)

最佳答案

可转换属性作为二进制数据存储在 Sqlite 数据库中。除非您的谓词也有二进制数据,否则您不能对该数据运行查询。可转换属性遵守 NSCoding 协议(protocol),因此,Core Data 知道如何序列化和反序列化属性。

附言要查看 Sqlite 抛出的错误,请尝试添加

-com.apple.CoreData.SQLDebug 1

到您的 Xcode 方案中的“启动时传递的参数”。

enter image description here

关于ios - 可转换对象上的 CoreData NSPredicate 导致 EXC_BAD_ACCESS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47793463/

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