From d410636ef240f22238894bdfde5c6b690086b0f8 Mon Sep 17 00:00:00 2001 From: Joan Martin Date: Tue, 15 Apr 2014 19:53:27 +0200 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8bb1a51..a8f59b7 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ Your custom object (subclass of `NSObject`) needs to override the method `+mts_m ```objective-c + (NSDictionary*)mts_mapping { - return @{@"json__key_1" : @"class_property_name_1", - @"json_key_2" : @"class_property_name_2", - @"json_key_3.json_key_4" : @"class_property_name_3", - ... + return @{@"json_key_1" : @"propertyName1", + @"json_key_2" : @"propertyName2", + @"json_key_3.json_key_4" : @"propertyName3", + ... }; } ```