标签: ios cocoa-touch core-data
我想从没有相关对象的实体中获取所有对象(使用特定的键路径) 我正在考虑使用count,但不知道如何实现它。
答案 0 :(得分:1)
如果搜索谓词是1:1关系,请尝试使用以下搜索谓词:
[NSPredicate predicateWithFormat:@"relationshipName = NULL"];
和1:n关系:
[NSPredicate predicateWithFormat:@"relationshipName.@count == 0"]