gpt4 book ai didi

ios - 检索要标记的 Firebase 数据

转载 作者:行者123 更新时间:2023-11-29 12:00:39 25 4
gpt4 key购买 nike

我正在尝试检索 firebase 信息并将其显示在标签中。

// Get a reference to our posts
Firebase *ref = [[Firebase alloc] initWithUrl:@"**************firebaseio.com/"];

// Attach a block to read the data at our posts reference
[ref observeEventType:FEventTypeValue withBlock:^(FDataSnapshot *snap) {

NSLog(@"%@", snap.value);

} withCancelBlock:^(NSError *error) {

NSLog(@"%@", error.description);

}];

我已经尝试添加 _label.text = snap.value 但由于某种原因应用程序仍然崩溃。

我需要检索大量信息,但对于此测试,我只想检索数据库中的唯一信息。在 NSLOG 中,我可以看到从数据库中检索到的值,但似乎无法将该值放在标签中。

最佳答案

所有需要做的就是将 snapshot.value 转换为 NSString 然后转换为标签。

Firebase *ref = [[Firebase alloc] initWithUrl: @"*************firebaseio.com/"];

[ref observeSingleEventOfType:FEventTypeValue withBlock:^(FDataSnapshot *snap) {
// do some stuff once

// NSLog(@"%@", snap.value);

string1 = snap.value;


_shown.text = string1;
NSLog(@"%@", _shown.text);

关于ios - 检索要标记的 Firebase 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37163791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com