We are currently planning to develop an iOS application that displays the list of products for viewing by the user in the form of a list with the corresponding small PDF file, and we want to use Parse to store data, since we can easily log into the system Parsing and updating product information.
I am currently struggling with parsing documentation, when the application starts, we want it to query PFObject and get all the lines inside our class to store them locally using
[PFObject pinAllInBackground:objects]
Our application will also need to check and update this data warehouse in future launches to ensure that the latest product information is available.
When the user browses the list of products, we request a local data store to show the data so that the application works completely offline.
What I'm struggling with is how to clear or update the local cache when I restart, users will not make any changes to this local data, and I was thinking about using
[PFObject unpinAllInBackground:objects]
But when we do this, followed by a request to bind the entire local data store, it is empty.
Thanks Aaron
source share