I am using JSONModel in my application. Is it possible to prepare category with JSONValueTransformer that will transform nil/null NSString to empty string (@""). So far when property in json response is null, my property in object becomes @"".
Because the whole API is not very well (it's external) I would like to avoid overriding initWithDictionary in every object and use just ValueTransformer for every JSONModel class with NSString property and map it to correct string or empty string if nil/null.