RestKit - Map keypath of an array to the object inside of that array
问题 I really stack up parsing this particular response with RestKit 0.20: "addons": [ { "id": 1, "name": "Addon one", "version": 2 }, { "id": 2, "name": "Addon two", "version": 3 } ], "forms": [ { "id": 1, "name": "Form one", "version": 1 } ] The problem is that I need to translate the response to an array of object of the same class, such as @interface MyCoreDataObject : NSManagedObject @property (nonatomic, retain) NSString * uid; @property (nonatomic, retain) NSNumber * version; @property