我想知道如何在page1中对50条消息进行排序,并在它触及firebase中tabview的底部时加载接下来的50条消息。感谢
答案 0 :(得分:1)
这将为您提供最近的25条
Firebase *fref = [[Firebase alloc] initWithUrl:@"your firebase url"]
[[fref queryLimitedToLast:25] observeEventType:FEventTypeChildAdded withBlock:^(FDataSnapshot *snapshot) {
}];
当表格触底时调用此
- (FQuery *) queryStartingAtValue:(id)startValue;