gpt4 book ai didi

ios - 使用 Realm 过滤器对成员 '==' 的引用不明确

转载 作者:行者123 更新时间:2023-11-28 06:07:04 26 4
gpt4 key购买 nike

 do {
let result = try Realm().objects(Pros.self)
print(result)
let filterResult = result.filter({ $0.category.filter({$0.type_cat == ""})})

print(filterResult)
}
catch {

print(error)

}

它给我的错误是“对成员‘==’的模糊引用”所以我想补充什么

最佳答案

我找到了解决方案,它对我来说非常有效

do {
let result = try Realm().objects(Pros.self)
print(result)
let predicate = NSPredicate(format: "SELF.type == %@ AND SELF.status == 'valide' AND ANY category.type_sector = %@ AND SELF.status == 'valide'", arrType[(selectedFromType?.row)!], arrTypeSector[(selectedFromSector?.row)!])
let arrFiltered = result.filter(predicate)
print(arrFiltered)


}
catch
{
print(error)

}

关于ios - 使用 Realm 过滤器对成员 '==' 的引用不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47882753/

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