Tag: objective c

从Firebase数据库中检索数据

嗨,我试图从firebase数据库检索数据。 这是我的代码 – (FIRDatabaseReference *) referenceFromURL:(NSString *)databaseUrl{ commentsRef = [[FIRDatabase database] referenceFromURL:databaseUrl]; return commentsRef; } -(void)viewWillAppear:(BOOL)animated { [commentsRef observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot *snapshot) { NSDictionary * post = snapshot.value; }]; } 该引用是由数据库成功构建的,但代码是以块的形式编写的 “NSDictionary * post = snapshot.value;” 没有执行。