gpt4 book ai didi

objective-c - 在 Objective-C 中解析 JSON 的首选数据类型是什么?

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

在 Objective-C 中解析 JSON 的首选数据类型是什么?我正在寻找一种数据类型,它反射(reflect)了使用 key=>value 样式和数组形式的能力。

最佳答案

通常库(例如 SBJson )将以 NSArrayNSDictionary 的形式返回它们的解析结果,这取决于解析的 JSON 元素是否是一个对象或数组。

来自 SBJsonParser.h :

/**
@brief Return the object represented by the given string

This method converts its input to an NSData object containing UTF8 and calls -objectWithData: with it.

@return The NSArray or NSDictionary represented by the object, or nil if an error occured.
*/
- (id)objectWithString:(NSString *)repr;

在您的问题中,您问“我正在寻找一种反射(reflect)使用 key=>value 的能力的数据类型”,根据定义,这正是字典的含义……所以,您可能正在寻找 NSDictionary

关于objective-c - 在 Objective-C 中解析 JSON 的首选数据类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9439275/

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