RestKit: mapping JSON array of strings
问题 Given the following JSON: { "someKey":"someValue", "otherKey":"otherValue", "features":[ "feature1", "feature2", "feature3" ] } I am mapping this JSON into NSManagedObject s with RKMapperOperation and RKEntityMapping (in this example I would have 2 entity mappings: one for the top level object and another one for my Feature class). The top level object mapping is trivial: two attribute mappings plus a relationship one(features) for the relation with Feature. My question is,how to map the