gpt4 book ai didi

swift - 'Key' 的使用不明确

转载 作者:搜寻专家 更新时间:2023-11-01 07:22:20 25 4
gpt4 key购买 nike

我正在尝试使用 swift 打印来自 Firebase 的一段数据的 key 名称,但是当我键入如下内容时,我一直收到“ key 的模糊使用”:

for child in snapshot.children{
print(child.key)
}

我怎样才能避免这种情况?非常感谢所有帮助!

最佳答案

将其转换为 FIRDataSnapshot。尝试这样做:

for child in snapshot.children{
let child1 = child as! FIRDataSnapshot
print(child1.key)
}

关于swift - 'Key' 的使用不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38161588/

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