我不太确定您如何映射此任务对象,但我NSData
通过以下方式使用 JSON 字符串解析:
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data
options:0
error:&error];
在这种情况下,我得到一个NSDictionary
带有一个键的“产品”,而该键的对象是另一个字典。NSDictionary
具有“任务”键的对象是四个NSArray
对象NSDictionary
中的一个。
现在,该 JSON 摘录不是有效的 JSON,但我认为它只是更广泛的 JSON 文件的一部分。但出于测试目的,我们假设 JSON 文件如下:
{
"product" : {
"id": 123,
"name": "Produce RestKit Sample Code",
"description": "We need more sample code!",
"tasks": [
{"name": "Identify samples to write", "assigned_user_id": 1},
{"name": "Write the code", "assigned_user_id": 1},
{"name": "Push to Github", "assigned_user_id": 1},
{"name": "Update the mailing list", "assigned_user_id": 1}]
}
}
然后我可以像这样解析那个 JSON:
NSString *filename = [[NSBundle mainBundle] pathForResource:@"13628140" ofType:@"json"];
NSData *data = [NSData dataWithContentsOfFile:filename];
NSError *error;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data
options:0
error:&error];
NSDictionary *product = dictionary[@"product"];
NSArray *tasks = product[@"tasks"];
NSDictionary *firstTask = tasks[0];
NSString *firstName = firstTask[@"name"];
NSString *firstAssignedUserId = firstTask[@"assigned_user_id"];
或者,如果您想枚举任务:
NSDictionary *product = dictionary[@"product"];
NSArray *tasks = product[@"tasks"];
[tasks enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
NSDictionary *task = obj;
NSLog(@"Task \"%@\" is assigned to %@", task[@"name"], task[@"assigned_user_id"]);
}];
您只是在问如何将其存储NSArray
在tasks
Core Data 中吗?