我尝试从文档Firebase,但我应该在哪里显示表聊天?到目前为止我尝试过的事情:
Firebase *ref = [[Firebase alloc] initWithUrl: @"https://simplechatapps.firebaseio.com"];
[[[ref queryOrderedByChild:@"message"] queryLimitedToLast:1] observeEventType:FEventTypeChildAdded withBlock:^(FDataSnapshot *snapshot) {
NSArray *message = snapshot.value[@"message"];
NSLog(@"%@",message);
}];
这里是数据的样子
--17
--chat
-Kal21gac2x2Za6q-Yq6
from: "13"
message: "hallo"
sender: "c52fb228be35675a"
time: "1484734081595"
to: "0"
注意:17是聊天室
最终我用ZHCHAT来帮助我完成申请。https://github.com/zhuozhuo/ZHChat 但我从firebase检索数据时遇到了僵局