I'm finding it difficult to deal with a webservice that has a top level array with no keypath and the array contains only strings, i.e.:
["foo", "bar", "baz"]
It would be easy to map if it were something like:
{"array_of_strings": ["foo", "bar", "baz"]}
I thought perhaps having a nil keyPath and mappingForClass:[NSString class] might do the trick, but it didn't seem to (I'm not sure that mapping for NSString even makes sense, but thought it might be a special case RestKit could handle).