我的parse类有一个名为“postcodes”的属性,它是一个数组数组。
在我的应用中,我有一个“relatedPostcodes”数组。我想创建一个查询,其中postcodes键包含“relatedPostcodes”数组中的任何对象。
像[query whereKey:@“postcodes”containsAnyObjectInArray:relevantPostcodes“]之类的东西。有什么想法吗?
答案 0 :(得分:4)
您可以使用[query whereKey:@"postcodes" containedIn:relevantPostcodes]
。请参阅description in the doc。就像等于方法一样,我认为它将对数组类型属性进行操作并执行您需要的操作。