Saving a user causes Error: object not found for update (Code: 101, Version: 1.2.19)
[PFGeoPoint geoPointForCurrentLocationInBackground:^(PFGeoPoint *geoP
Try this, i'm using this, when i need to save objects for the current user. Hope it will help.
PFUser *user = [PFUser currentUser];
[user setObject:geoPoint forKey:@"location"];
[user saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (error){
NSLog(@"Error %@ %@", error, [error userInfo]);
}
}];