我想知道如何获得与 BOOL 值匹配的所有关系对象。
使用 ANY 创建谓词可以正常工作:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ANY journeyPart.lastPart == NO"];
但是,如果我尝试这样做,我只会崩溃:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ALL journeyPart.lastPart == NO"];
谢谢
卡尔。