0

大家好,我想向那些可以'给我的人寻求帮助......在您开始使用特定 Parse.com 作为我的应用程序中数据的管理器之前,在我的 FILE.h 中,我创建了一个名为 PostDetails 的 PFObject

我 file.m 中的 PostDetail 在 TableView 中用于显示帖子列表。

我的应用程序的用户可以创建一个包含 PFRelation 帖子的报告

现在要检索当前用户与某个帖子的所有关系,我创建了这个查询

- (void)  LoadDataGoPointAssigned {
    FFCustomCellWithImage CCIButtonAddGoPoint * = [ [ FFCustomCellWithImage alloc] init ] ;
    
    self.RelationForGoPointAssignToPost = [ [ PFUser currentUser ] objectForKey : @ " PostGoPoint "];
    
    PFQuery QueryForPostGoPoint * = [ self.RelationForGoPointAssignToPost query ] ;
    [ QueryForPostGoPoint whereKey : @ " objectId " equalTo : self.PostDetails.objectId ] ;
    [ QueryForPostGoPoint findObjectsInBackgroundWithBlock : ^ ( NSArray * objects, NSError * error ) {
        if ( error) {
            
        Else { }
        
        if ( [ objects count] > 0) {
            CCIButtonAddGoPoint.AddGoPoint.selected = YES ;
            UIImage * ButtonDisable = [ UIImage imageNamed : @ " FFIMG_Medal_Blu "];
            [ CCIButtonAddGoPoint.AddGoPoint setImage : ButtonDisable forState : UIControlStateNormal ] ;
        }}
    } ] ;

}

我的问题是,当我运行时,应用程序崩溃并在这一行给我断点......我在哪里做错了?

[QueryForPostGoPoint whereKey:@"objectId" equalTo:self.PostDetails.objectId];

我为我表达自己的方式道歉,但我使用的翻译不是以英语为母语的人......我希望这一切都可以理解......再次抱歉......

4

1 回答 1

1

在这一行中,您可以看到类名周围有多余的空格PostGoPoint

self.RelationForGoPointAssignToPost = [ [ PFUser currentUser ] objectForKey : @ " PostGoPoint "];

当使用 whereKey 中的类名访问时,它可能会失败。

于 2013-12-15T06:51:06.920 回答