gpt4 book ai didi

objective-c - NSJSON 序列化

转载 作者:搜寻专家 更新时间:2023-10-30 20:25:40 24 4
gpt4 key购买 nike

我是 NSJSONSerialization 的新手。这是我的浏览器输出:

{
"appointment": [
{
"w1": "Mallya Hospital",
"w2": "Nagarjuna Hospital",
"w3": "Mallige Hospital",
"w4": "Mallya Hospital",
"t1": [
"08:00 - 08:25",
"08:25 - 08:50",
"08:50 - 09:15",
"09:15 - 09:40"
],
"t2": [
"14:00 - 14:05",
"14:05 - 14:10",
"14:10 - 14:15",
"14:15 - 14:20",
"14:20 - 14:25",
"14:25 - 14:30",
"14:30 - 14:35",
"14:35 - 14:40",
"14:40 - 14:45",
"14:45 - 14:50",
"14:50 - 14:55",
"14:55 - 15:00",
"15:00 - 15:05",
"15:05 - 15:10",
"15:10 - 15:15",
"15:15 - 15:20",
"15:20 - 15:25",
"15:25 - 15:30",
"15:30 - 15:35",
"15:35 - 15:40",
"15:40 - 15:45",
"15:45 - 15:50",
"15:50 - 15:55"
],
"t3": [
"14:00 - 14:35",
"14:35 - 15:10",
"15:10 - 15:45"
],
"t4": [
"16:30 - 17:15",
"17:15 - 18:00"
],
"tp1": "25",
"tp2": "5",
"tp3": "35",
"tp4": "45",
"ts1": "8:00 - 10:00",
"ts2": "14:00 - 16:00",
"ts3": "14:00 - 16:00",
"ts4": "16:30 - 18:30",
"offdays": "4-6"
}
]
}

我需要将时间传递到标签中,将医院名称传递到另一个标签中。如何使用 NSJSONSerialization 获取上面给出的时间?

最佳答案

首先你必须将字符串/文件转换为可以反序列化的数据

NSData *data = [stringData dataUsingEncoding:NSUTF8StringEncoding];

为了可视化您的数据将如何在 JSON 对象中组织,一个 quick beautifier将显示您的数据遵循结构 Dictionary->Array (1 element)->Dictionaries->Arrays/Values

例如,具体访问时间:

NSDictionary *jsonObject = [NSJSONSerialization JSONObjectWithData:data options: NSJSONReadingMutableContainers error: &e]; //Options can be simply 0

NSArray *t1 = jsonObject[@"appointment"][0][@"t1"];

关于objective-c - NSJSON 序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13679024/

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