0

I have one PFUser logged in on two iOS devices. When each app starts, I need to download PFUser data from server to keep latest data (made on the second device).

Is there any method to do that? Because in documentation there is no mention of such thing: https://parse.com/docs/osx/api/Classes/PFUser.html

mirap
  • 1,266
  • 12
  • 23
  • What's a good alternative? I've been having troubles with Parse and would gladly switch. – mginn May 11 '15 at 00:52

1 Answers1

1

Ok, there are two solutions:

1) As Michael mentioned - not to use Parse. :)

2) Or use:

[[PFUser currentUser] fetchInBackgroundWithBlock:^(PFObject *object, NSError *error) {
    ...
}];
mirap
  • 1,266
  • 12
  • 23