Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想按类别 id 获取产品。因为产品有一个名为“categories”的属性,它是一个带有类别 id 的数组,我不知道如何使用NSPredicate.
NSPredicate
甚至可能吗?还是我应该获取所有这些,然后遍历它们?
您不存储NSArray在核心数据中,没有NSArray数据列类型......
NSArray
很可能您需要过滤类别 id 字段,在这种情况下,您可以通过NSPredicate以下方式使用:
NSPredicate *searchFilter = [NSPredicate predicateWithFormat:@"category_id = %@", 67];