在Parse中查询具有指针数组的对象

时间:2015-02-07 22:50:40

标签: objective-c swift parse-platform

  • 我有一个名为[PFObjects]的{​​{1}}数组。
  • 在Parse中,有一个Class:restaurantsArray,其中包含指向RestaurantName的指针(FoodPhotos中的对象)

如何查询restaurantsArray中包含指向FoodPhotos中对象的指针的所有对象。

Class“FoodPhotos”:

enter image description here

基本上我想抓住所有包含restaurantsArray

中对象指针的食物照片

1 个答案:

答案 0 :(得分:1)

我现在无法测试此代码以确保它有效,但您可以尝试以下内容:

PFQuery *query = [FoodPhotos query]; // Or ... = [PFQuery queryWithClassName:@"FoodPhotos"];
[query whereKey:@"RestaurantName" containedIn:restaurantArray];

这应该只返回FoodPhotosRestaurantName列与restaurantArray中某个对象匹配的对象。