gpt4 book ai didi

ios - PFQuery 和 PFRelation 运行时应用程序崩溃

转载 作者:行者123 更新时间:2023-11-29 03:27:24 24 4
gpt4 key购买 nike

大家好,我想向那些可以将其提供给我的人寻求帮助......在您开始使用特定的 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];

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

最佳答案

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

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

可能是在使用whereKey访问类名时失败。

关于ios - PFQuery 和 PFRelation 运行时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20287033/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com