Using Parse, I've created a column that should contain PFObjects in my User class. I'm able to fetch the current user just as I used to and to update every info of it, but the PFObject column. I don't know if a PFObject can't be stored like that and should only be referenced or if I'm just saving it the wrong way. Here's the code:
PFObject *object = [PFObject objectWithClassName:@"User" dictionary:
[NSMutableDictionary dictionaryWithObjectsAndKeys:currentPlace.identifier,
[NSNumber numberWithFloat:newRating], nil]];
[PFUser currentUser][@"rated_places"] = object;
[[PFUser currentUser] saveInBackground];
saveInBackgroundWithBlock
and log the error object that gets passed into the callback to see if you receive any error while saving it and add the results to your question – Björn Kaiser