[PFObjects]
的{{1}}数组。 restaurantsArray
,其中包含指向RestaurantName的指针(FoodPhotos
中的对象)如何查询restaurantsArray
中包含指向FoodPhotos
中对象的指针的所有对象。
基本上我想抓住所有包含restaurantsArray
答案 0 :(得分:1)
我现在无法测试此代码以确保它有效,但您可以尝试以下内容:
PFQuery *query = [FoodPhotos query]; // Or ... = [PFQuery queryWithClassName:@"FoodPhotos"];
[query whereKey:@"RestaurantName" containedIn:restaurantArray];
这应该只返回FoodPhotos
列RestaurantName
列与restaurantArray
中某个对象匹配的对象。