我有以下 json 返回字符串:
[{"status":2,"id":"-1","content":"User has entered wrong input","time":1346765646202}]
(如您所见,结果位于包含单个对象的数组中)。
如何在没有枚举的情况下提取状态和内容的值?
现在我创建了一个字典并使用枚举运行它,但我不喜欢这个解决方案:
NSData *jsonData = [returnString dataUsingEncoding:NSUTF8StringEncoding];
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];