gpt4 book ai didi

iphone - 如何使用 JSON-Framework 解析 iPhone SDK (XCode) 中的 JSON 对象

转载 作者:行者123 更新时间:2023-12-03 18:33:29 25 4
gpt4 key购买 nike

我有这样的 JSON 对象:

{ "data":
{"array":
["2",
{"array":
[
{"clientId":"1","clientName":"Andy","job":"developer"},
{"clientId":"2","clientName":"Peter","job":"carpenter"}
]
}
]
},
"message":"MSG0001:Success",
"status":"OK"
}

我想使用 JSON-Framework 获取 array[0] 值 (2) 和 array[1] 值(clientId、clientName、job)。您知道如何做到这一点吗?

最佳答案

假设您已遵循instructions to install JSON-Framework 到您的项目中,以下是您如何使用它(取自 the docs here ):

// Parse the string into JSON
NSDictionary *json = [myString JSONValue];

// Get the objects you want, e.g. output the second item's client id
NSArray *items = [json valueForKeyPath:@"data.array"];
NSLog(@" client Id : %@", [[items objectAtIndex:1] objectForKey:@"clientId"]);

关于iphone - 如何使用 JSON-Framework 解析 iPhone SDK (XCode) 中的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3165290/

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