我正在构建一个类似于“instagram”的应用程序,其中包含带有图片的帖子。我正在使用 Firebase 存储/检索数据。
我的问题出现是因为帖子以随机方式显示。例如,在 cellForRowAtIndexPath
中,第一个帖子显示在 indexPath[0],下一个帖子是 [1],但下一个应该在 [2] 的帖子显示在 [0] .
我将复制粘贴与该问题最相关的代码:
这是我检索分数的类(class):
////// 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"osts"] 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"ostPhoto"]]]];
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 addObjectostKeys];
}
}
} withCancelBlock:^(NSError * _Nonnull error) {
NSLog(@"%@", error.localizedDescription);
}];
如果我退出并重新启动应用程序,新帖子将存储在从 [0] 开始的任何“空”索引中,这是预期的。
这就是 didSelectRowAtIndexPath
的样子:
-(void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath*)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:@"osts"] child:keyforcell] child:@"Score"] setValue:[NSNumber numberWithInt:[score.text intValue]]];
[[[[self.ref child:@"osts"] child:keyforcell] child:@"Rated"] setValue:@"YES"];
[scoreArray insertObject:[NSNumber numberWithInt:[score.text intValue]] atIndex:indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
}
我曾尝试使用 observeSingleEventOfType
和 observeEventType
,因为这可能与单个仅调用一次这一事实有关。另外我认为在选择单元格后会触发 viewDidLoad()
,但它不应该。另外,我认为它与 NSMutableArrays 有关,但我不完全确定
谁能帮帮我?
更新:我知道 Firebase 和 NSDictionary 都不会返回/存储排序数据,所以我的猜测是我的问题与排序项目有关。我了解了 orderbykey
和 orderbyvalue
但它们似乎不起作用。
不清楚您的问题是什么,但您不应忘记 Firebase 数据库中没有数组。唯一的集合类型是字典,字典没有键顺序。
您应该考虑对对象使用排序系统,而不是直接将它们添加到数组中。
关于ios - 如何使用 Firebase 在 UITableViewController 中正确显示数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47209289/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |