搜索

请问在XCODE或者OS X下,有没有什么好用的插件能将JSON转成想要的对象...

发布网友 发布时间:2024-10-23 12:35

我来回答

1个回答

热心网友 时间:2天前

Xcode 自己就有 json 支持啊。

NSJSONSerialization

//Swift
class func JSONObjectWithData(_ data: NSData, options opt: NSJSONReadingOptions, error error: NSErrorPointer) -> AnyObject?

//OBJECTIVE-C
+ (id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error

将 json 读入 NSData 然后用上述方法得到 json 对象。之后可以像字典那样子读取 json 内容。

声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top