请问在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 内容。