在我的项目中,我拥有关键userPosts的用户关系。我想在这个关系中添加具有不同类名的不同对象,在本例中是来自UIPicker的类别,如下所示:
PFObject *post = [PFObject objectWithClassName:selectedCategory];
//do stuff with the object...
[object save];
PFRelation *relation = [PFUser currentUser] relationForKey:@"userPosts"];
[relation addObject:post];
[PFUser currentUser] saveInBackground];
问题在于,当我尝试执行此代码时,它会抛出一个运行时错误,基本上说我只能将对象添加到具有一个类名的关系中。我如何覆盖/修复它?谢谢:))