firebaseUi TableView で snap.key によってデータセットを降順で表示しようとしています
Firebase *firebaseRef = [[Firebase alloc] initWithUrl:@"firebaseio.com/data"];
self.dataSource = [[FirebaseTableViewDataSource alloc] initWithRef:firebaseRef cellReuseIdentifier:@"cell" view:self.tableView];
[self.dataSource populateCellWithBlock:^(UITableViewCell *cell, FDataSnapshot *snap){
// Populate cell as you see fit, like as below
cell.textLabel.text = snap.value[@"Data"];
}];
現在、私の TableView は次のようになっています。
- 古いアイテム
- リスト項目
- 新商品
次のように表示する必要があります。
- 新商品
- リスト項目
- 古いアイテム