Swift – 无法将’__ NSCFString’类型的值转换为’NSDictionary’

Swift – 无法将’__ NSCFString’类型的值转换为’NSDictionary’,第1张

概述我收到此错误,但我正在尝试从字典中获取字符串.这是我的代码: FIRDatabase.database().reference().child("users").child(uid).observeEventType(.ChildAdded, withBlock: { (snapshot) in let dictionary = snapshot.value as! NS 我收到此错误,但我正在尝试从字典中获取字符串.这是我的代码:
FIRDatabase.database().reference().child("users").child(uID).observeEventType(.ChildAdded,withBlock: { (snapshot) in            let dictionary = snapshot.value as! NSDictionary            if let username = dictionary["name"] as? String {                cell.name.text = username            }            if let userlogin = dictionary["login"] as? String {                cell.login.text = userlogin            }        })

在我的Firebase数据库中,“name”和“login”都是字符串.我无法理解这是什么问题.

任何帮助将不胜感激!

问题将快照转换为NSDictionary.由于快照值是String.
试试这个:
FIRDatabase.database().reference().child("users").child(uID).observeEventType(.ChildAdded,withBlock: { (snapshot) in        if let dictionary = snapshot.value as? NSDictionary {            if let username = dictionary["name"] as? String {                cell.name.text = username            }            if let userlogin = dictionary["login"] as? String {                cell.login.text = userlogin            }        }    })
总结

以上是内存溢出为你收集整理的Swift – 无法将’__ NSCFString’类型的值转换为’NSDictionary’全部内容,希望文章能够帮你解决Swift – 无法将’__ NSCFString’类型的值转换为’NSDictionary’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1043376.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存