这个问题在这里已经有了答案:
Best Answer-推荐答案 strong>
由于 json["observations"]
是一个字典,你可以这样做来获取它的第一个键
guard let dict = json["observations"] as? [String: AnyObject],
let firstKey = dict.keys.first else { return }
print(firstKey) // should print the first key found in the observations dictionary
关于ios - 在 Swift 中使用动态键解析 JSON,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39464853/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |