gpt4 book ai didi

ios - 在 swift 中用数组解析 json 对象

转载 作者:行者123 更新时间:2023-11-30 14:18:29 26 4
gpt4 key购买 nike

我有这个 JsonResponse:

...id = 7;
levels = (
{
name = "name";
"unique_id" = 23223;
},
{
name = "name";
"unique_id" = d32432;
},
{
name = "name";
"unique_id" = 324;
},
{
name = "name";
"unique_id" = 234;
}
);

我用它来获取结果作为字典:

var jsonResult = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: &err) as! NSDictionary

我的问题是如何解析级别数组 - 迭代对象并获取数组大小

最佳答案

基本上你只需循环它们:

if(jsonResult)
{
let levels = jsonResult! as NSDictionary;

for item in levels {
let obj = item as NSDictionary

let name = obj["name"] as NSString;
let uniqueId = obj["unique_id"] as NSNumber;
}
}

关于ios - 在 swift 中用数组解析 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30829647/

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