我从天气API中获取数据。我不确定如何访问说明?
"weather": <__NSSingleObjectArrayI 0x608000012910>(
{
description = "overcast clouds";
icon = 04n;
id = 804;
main = Clouds;
}
)
我试过了:
print(weatherDict["weather"]!.description!)
它只是给了我这个:
(
{
description = "overcast clouds";
icon = 04n;
id = 804;
main = Clouds;
}
)
如何正确访问说明?
答案 0 :(得分:10)
max
包含一系列词典。weather
是数组第一项中的键。 代码安全地展开description
并检查数组是否为空:
weather