0

I have a PFObject of which one of its sub objects is an array with a pointers to an object of a class (Cars). I want to compare the pointer to an array of PFObjects (Cars) which I have already downloaded previously and find the matching one.

Is there a ways to do this without having to download the pointers class directly? I really want to avoid doing that. Thanks a lot!

freshking
  • 1,824
  • 18
  • 31

1 Answers1

1

I have had the same issue. Unfortunately parse doesn't allow you to search an array within an object. You have to download the entire array and sift through it manually.

Dhwanit Zaveri
  • 465
  • 1
  • 5
  • 15