0

I'm developing an application that has a Login & Sign-Up configuration with Parse.

I'm working with Core Data to store the information. I have four Entities (for example: Favorite Cars, Races, Recent Races, etc.), which are stored on the iPhone and available offline.

I'd like to store this database in Parse so each user that logs in can recover their own copy of the database.

rici
  • 234,347
  • 28
  • 237
  • 341
Kingofmit
  • 2,066
  • 1
  • 17
  • 22

1 Answers1

0

Parse doesn't support this. You should use Parse Local Data Storage instead.

If you want to try anyway, start with the FTASync and PFIncrementalStore implementations. But they're both years-old and unmaintained.

Aaron Brager
  • 65,323
  • 19
  • 161
  • 287
  • Thanks Aaron ! Parse local data storage allow me just to store Classes ! How can i find the unique informations stored of the User that will log in ? I mean I would like to have something like a social network "When someone logs in, he'll find his own informations that he created when he signup etc..." I know it's very hard to do it ! – Kingofmit May 07 '15 at 07:22