Skip to content

Instantly share code, notes, and snippets.

@whalec
Created July 22, 2011 04:27
Show Gist options
  • Save whalec/1098888 to your computer and use it in GitHub Desktop.
Save whalec/1098888 to your computer and use it in GitHub Desktop.
RKManagedObjectMapping *postMapping = [RKManagedObjectMapping mappingForEntityWithName:@"MRNPost"];
postMapping.primaryKeyAttribute = @"postID";
[postMapping mapKeyPath:@"id" toAttribute:@"postID"];
[postMapping mapKeyPath:@"url" toAttribute:@"url"];
[postMapping mapKeyPath:@"content" toAttribute:@"content"];
[postMapping mapKeyPath:@"created_at" toAttribute:@"createdAt"];
[postMapping mapKeyPath:@"updated_at" toAttribute:@"updatedAt"];
[postMapping mapKeyPath:@"images" toRelationship:@"images" withObjectMapping:postImageMapping];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment