1

我正在使用通过 REST 调用接收到的带有 JSON 的基本 RestKit 映射。

 RKManagedObjectMapping* contactMapping = [RKManagedObjectMapping mappingForClass:[Contact class]];
[contactMapping mapAttributes:@"id", @"firstName", @"middleName", @"lastName", @"title", @"email", nil];
contactMapping.primaryKeyAttribute = @"id";

[contactMapping mapRelationship:@"addresses" withMapping:addressMapping];
[contactMapping mapRelationship:@"phoneNumbers" withMapping:phoneMapping];

// Register our mappings with the provider
[objectManager.mappingProvider setMapping:contactMapping forKeyPath:@"contacts"];

我有一个新字段,状态,我现在需要检查它是否是“删除”(或其他),如果是,则从数据库中删除该联系人(如果存在)。但是,我不知道该把它放在哪里。我是否需要创建自己的扩展对象映射类来处理这个问题?在这方面有任何例子吗?我的 Google Fu 在这方面很弱。

4

0 回答 0