I have a PFObject class where each object has a user attached to it. I can call each object and display it in a tableview, however when I try to call the associated PFUser to each object it just crashes.
PFObject *owner = [self.objectArray objectAtIndex:indexPath.row];
NSString *ownerString = [owner objectForKey:@"user"];
cell.detailTextLabel.text = ownerString;
Is there another way I need to call the user to get the username? In the NSLog the user looks like this: user = \"<PFUser:dDeHnc33EE>\";\n