gpt4 book ai didi

ios - 提取 JSON 并将其保存在 NSMutableArray 中

转载 作者:行者123 更新时间:2023-11-28 21:40:14 25 4
gpt4 key购买 nike

以下是我的 JSON,我想提取数据并将其保存到 NSMutableArray。然而,这并没有被准确地提取出来。我现在坚持了一段时间。有人可以帮帮我吗?

注意:我希望按原样提取 JSON。每个子类别。

{  
"Animal":[
{
"Dog":[
{
"id":"644"

}
]
},
{
"Cat":[
{
"id":"4125"

},
{
"id":"1326"

}

]
},
{
"Mouse":[
{
"id":"224"

},
{
"id":"245"

}
]
},

{
"Fish":[
{
"id":"144"

},
{
"id":"142"

}
]
}
]
}

我需要将这些组件添加到 NSMutableArray。我该怎么做?

animalArray = [[NSMutableArray alloc] init];

for (int i =0; i < [[jsonDict objectForKey:@"Animal"] count]; i++) {

dictionary= [[NSMutableDictionary alloc] init];




for (int k =0; k < [[[jsonDict objectForKey:@"Animal"] objectAtIndex:i] count]; k++) {

dictionary setObject:[[[[jsonDict objectForKey:@"Animal"] objectAtIndex:i] objectAtIndex:k] objectForKey:@"id"] forKey:@"id"];



[animalArray addObject: dictionary];

}



}

最佳答案

试试这个来获得一个与 JSON 结构完全相同的 NSDictionary 对象

NSDictionary *json = [NSJSONSerialization JSONObjectWithData:objectData // this is your JSON
options:NSJSONReadingMutableContainers
error:&jsonError];
NSLog(@"%@",json); // check the structure here

关于ios - 提取 JSON 并将其保存在 NSMutableArray 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32463975/

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