ios - 在自定义对象中映射 JSON 对象

标签 ios json parsing nsjsonserialization custom-object

我一直在搜索是否可以获取 JSON 字典或数组并将其直接映射到属性与 JSON 标签同名的自定义对象中,但我没有找到任何相关信息。

我一直在手动解析 JSON 字典,如下所示:

id deserializedObj = nil;
id jsonObject = [NSJSONSerialization JSONObjectWithData:jsonData
                                                options:NSJSONReadingAllowFragments
                                                  error:&error];
if ([jsonObject isKindOfClass:[NSDictionary class]]) {
        NSDictionary *jsonDictionary = (NSDictionary *)jsonObject;

  if ([jsonDictionary objectForKey:idTag] != [NSNull null])
     [myObject setID:[[jsonDictionary objectForKey:@"id"] integerValue]];

  // Rest of properties
}

但我发现必须手动解析每个字典条目并且没有办法将其直接序列化为自定义对象很奇怪,难道没有其他更快的方法吗?

注意:我需要我的应用与 iOS 5+ 兼容

提前致谢

最佳答案

我建议您使用一个名为 Motis 的库.它是 NSObject 上的一个类别,通过 KeyValueCoding 进行对象映射。这个类别的好处是它非常轻量级并执行自动值验证以尝试适合您的属性的类类型(通过内省(introspection))。

最重要的是,您需要做的是在您的 NSObject 子类中使用成对的“JSONKey”:“PropertyName”定义映射(字典)。

此外,如果您有数组,则可以定义从数组名称到其内容的类类型的映射,从而为数组内容启用自动对象映射。

例如,如果我们尝试将以下 JSON 映射到我们的自定义对象:

{"video_id": 23,
 "video_title": "My holidays in Paris",
 "video_uploader":{"user_id":55,
                   "user_username": "johndoe"
                  },
 "video_people":[{"user_id":55,
                   "user_username": "johndoe"
                 },
                 {"user_id":45,
                   "user_username": "jimmy"
                 },
                 {"user_id":55,
                   "user_username": "martha"
                 }
                ]
 }

我们将在我们的 NSObject 子类中实现:

// --- Video Object --- //
@interface Video : NSObject
@property (nonatomic, assing) NSInteger videoId; 
@property (nonatomic, strong) NSString *title;
@property (nonatomic, strong) User *uploader;
@property (nonatomic, strong) NSArray *peopleInVideo; // <-- Array of users
@end

@implementation Video
+ (NSDictionary*)mts_mapping
{
    return @{@"video_id" : mts_key(videoId),
             @"video_title" : mts_key(title),
             @"video_uploader" : mtsk_key(uploader),
             @"video_people": mts_key(peopleInVideo),
            };
}

+ (NSDictionary*)mts_arrayClassMapping
{
    return @{mts_key(peopleInVideo): User.class};
}

@end

// --- User Object --- //
@interface User : NSObject
@property (nonatomic, assing) NSInteger userId; 
@property (nonatomic, strong) NSString *username;
@end

@implementation User
+ (NSDictionary*)mts_mapping
{
    return @{@"user_id" : mts_key(userId),
             @"user_username" : mts_key(username),
            };
}

@end

并执行解析和对象映射:

NSData *data = ... // <-- The JSON data
NSError *error = nil;
NSDictionary *jsonObject = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];

if (error)
    return; // if error, abort.

Video *video = [[Video alloc] init];
[video mts_setValuesForKeysInDictionary:jsonObject]; // <-- Motis Object Mapping 

NSLog(@"Video: %@", video.description);

就这么简单。您可以在这里阅读更多相关信息:http://github.com/mobilejazz/Motis

有关更多信息,请查看 blog post关于使用 KeyValueCoding 和分布式对象映射的好处,我在 MobileJazz blog 中写道.

希望对您有所帮助。

关于ios - 在自定义对象中映射 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17929570/

相关文章:

c++ - 当某些结构字段被省略或顺序与结构声明中的顺序不同时,如何实现正确的解析?

ios - NSURLSession 后台 session 中的 NSURLSessionDownloadTask 出错

解析字符串输入的关键字和内容

iphone - UITableView 没有响应 performSelectorOnMainThread

c++,使用nlohmann::json解析JSON数组

javascript - jQuery 中简单的 get API 调用

javascript - Webpack 无法加载json 文件,如何定位本地json 文件并使用http.get 和AngularJS 加载该文件

java - Sax 解析和编码

ios - UIPickerView数据源x委托(delegate)设计

ios - Apple Health Kit 错误域=com.apple.healthkit 代码=5 “Authorization not determined”