gpt4 book ai didi

iOS JSON 解析

转载 作者:行者123 更新时间:2023-11-29 03:35:27 26 4
gpt4 key购买 nike

我知道如何使用所有 key 对值解析 JSON 数据。检查下面的 JSON

{ “A”: [ “a1”, “a2”, “a3” ], “b”:[ “b1”, “b2”, “b3” ]}

其中键值 a 和 b 不是静态键值。它们是动态键值。我该如何解析这个?

最佳答案

如果你知道它们是数组:

NSDictionary *parsedData = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];

for (NSString *key in [parsedData allKeys])
{
// you have now a key to an array
}

关于iOS JSON 解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19243735/

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