I am receiving multiple keys for Latitude and Longitude in the JSON body for a request.
{
...
latitude: "28.4949762000",
longitude: "77.0895421000"
}
I would like to combine them into a single CLLocation property while converting them into my JSON model:
#import <Mantle/Mantle.h>
@import CoreLocation;
@interface Location : MTLModel <MTLJSONSerializing>
@property (nonatomic, readonly) float latitude;
@property (nonatomic, readonly) float longitude; //These are the current keys
@property (nonatomic, readonly) CLLocation* location; //This is desired
@end
How do I go about achieving the same?
Finally found the answer here. It's quite an ingenious way, and I was surprised to see it not being mentioned in the docs explicitly.
The way to combine multiple keys into a single object is by mapping the target property to multiple keys using an array in the
+JSONKeyPathsByPropertyKey
method. When you do so, Mantle will make the multiple keys available in their ownNSDictionary
instance.If the target property is an NSDictionary, you're set. Otherwise, you will need specify the conversion in either the
+JSONTransformerForKey
or the+propertyJSONTransformer
method.