如何在具有Firebase的UITableViewController中正确显示数据?

时间:2017-11-09 18:40:08

标签: ios objective-c uitableview firebase firebase-realtime-database

我正在制作类似“Instagram”应用的内容,其中包含带图片的帖子。我正在使用Firebase来存储/检索数据。

我的问题是因为帖子是随机显示的。例如,在cellForRowAtIndexPath中,第一个帖子显示在indexPath [0],下一个帖子是[1],但是下一个帖子应该是[2],它显示在[0]。

我将复制粘贴问题的最相关代码:

这是我检索分数的类:

////// Arrays to store the data
nameArray = [[NSMutableArray alloc]init];
scoreArray = [[NSMutableArray alloc]init];
photomealArray = [[NSMutableArray alloc]init];
keysArray = [[NSMutableArray alloc]init]; // Reference to know what post should be scored. 


// Reference to the Database
self.storageRef = [[FIRStorage storage] reference];
FIRDatabaseReference *rootRef= [[FIRDatabase database] referenceFromURL:@"https://XXXXXXX.firebaseio.com/"];


// Query all posts
[[rootRef child:@"Posts"] observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {

    if(snapshot.exists){

        NSDictionary *dict = snapshot.value;
        for (NSString *key in dict) {

            // Query all users to show the Name of the person who posts
            [[rootRef child:@"Users"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull Usersnapshot) {

                if(Usersnapshot.exists){
                    NSDictionary *Userdict = Usersnapshot.value;
                    for (NSString *Userkey in Userdict) {


                        NSString *Users_UserID = [Userdict[Userkey] valueForKey:@"UserID"];
                        NSString *UserID = [dict[key] valueForKey:@"UserID"];
                        // If the userID matches with the person who posts, then add it to the array
                        if([Users_UserID isEqualToString:UserID]) [nameArray addObject:[NSString stringWithFormat:@"%@",[Userdict[Userkey] valueForKey:@"Name"]]];

                    }
                }

            }];

            UIImage *mealPhoto = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL   URLWithString:[dict[key] valueForKey:@"PostPhoto"]]]];

            NSString *Score = [dict[key] valueForKey:@"Score"];
            NSString *PostKeys = [dict[key] valueForKey:@"KeyforPost"];
            if([Score isEqual:@"null"]) [scoreArray addObject:@"0"]; else [scoreArray addObject:Score];
            [photomealArray addObject:mealPhoto];
            [keysArray addObject:PostKeys];

        }

    }
} withCancelBlock:^(NSError * _Nonnull error) {
    NSLog(@"%@", error.localizedDescription);
}];

如果我退出并重新启动应用程序,新帖子将存储在从[0]开始的任何索引“空”中,这是预期的。

这就是didSelectRowAtIndexPath的样子:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{

FeedTableViewCell *cell =[tableView cellForRowAtIndexPath:indexPath];

if(cell.selectionStyle != UITableViewCellSelectionStyleNone){

    if([score.text intValue] >= -1 && [score.text intValue] <= 1 && ![score.text  isEqual: @""]){

            NSString *keyforcell = [keysArray objectAtIndex:indexPath.row];

            NSLog(@"key a usar :%@", keyforcell);

             ref = [[FIRDatabase database] referenceFromURL:@"https://XXXXX.firebaseio.com"];


            [[[[self.ref child:@"Posts"] child:keyforcell] child:@"Score"] setValue:[NSNumber numberWithInt:[score.text intValue]]];

            [[[[self.ref child:@"Posts"] child:keyforcell] child:@"Rated"] setValue:@"YES"];

            [scoreArray insertObject:[NSNumber numberWithInt:[score.text intValue]] atIndex:indexPath.row];

            cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }

}

我尝试使用observeSingleEventOfTypeobserveEventType,因为这可能与单一只调用一次这一事实有关。此外,我认为在选择单元格后会触发viewDidLoad(),但不应该。另外,我认为它与NSMutableArrays有关,但我不完全确定

任何人都可以帮助我吗?

更新:我知道Firebase和NSDictionary都没有返回/存储排序数据,所以我的猜测是我的问题与排序项目有关。我了解了orderbykeyorderbyvalue,但它们似乎没有用。

1 个答案:

答案 0 :(得分:0)

目前尚不清楚您的问题是什么,但您不应忘记Firebase数据库中没有数组。唯一的集合类型是字典,字典没有键顺序。

您应该考虑对象上的排序系统,而不是直接将它们添加到数组中。