Realm-JSON
Realm-JSON copied to clipboard
had Error
Json Example { mid: 1501, description: "This what" } ----------------- @interface Episode : RLMObjec @property NSInteger mid; @property NSString *desc;
@end
@implementation Episode
- (NSDictionary *)JSONInboundMappingDictionary { return @{ @"description": @"desc" }; }
@end
When I used it, had error
How to convert description property;