gpt4 book ai didi

ios - JSON 到 NSDictionary 文字

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:48:19 25 4
gpt4 key购买 nike

我需要构建一个 NSDictionary,然后我可以用 NSJSONSerialization 解析它以获得一个很好的 JSON 格式的字符串。

我的 JSON 的最终输出需要类似于:

"Viewport":{
"BottomRight":{
"Latitude":1.26743233E+15,
"Longitude":1.26743233E+15
},
"TopLeft":{
"Latitude":1.26743233E+15,
"Longitude":1.26743233E+15
}
}

我认为使用 NSDictionary 字面量可能是最简单的,但我如何通过这种方式创建多层嵌套字典?

另外,我需要在创建字典时设置纬度和经度值。

最佳答案

你可以任意嵌套自由派:

@{@"Viewport":@{
@"BottomRight":@{
@"Latitude":@(1267...),
@"Longitude":@(126...)
},
...

关于ios - JSON 到 NSDictionary 文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16598287/

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