我有一个名为diziTum的数组
diziTumm
包含结果
{
"YASSINIRLA" : "True",
"KARBON" : "98"
}
{
"YASSINIRLA" : "True",
"KARBON" : "98"
}
{
"YASSINIRLA" : "True",
"KARBON" : "98"
}
现在我有疑问? 我如何显示" KARBON"的价值?在tableviewCell
中提前致谢
答案 0 :(得分:1)
您应该为数组diziTumm中的字典中的值get添加一个强制转换。
cell.lblSonText.text = diziTumm[indexPath.row]["KARBON"] as? String
答案 1 :(得分:0)
“Karbon”是价值“98”的关键 你不能打印钥匙。
cell.lblSonText.text = diziTumm[indexPath.row]["KARBON"] as? String
这将打印98