I have an NSManagedObject with options property of type NSString. but the response I receive from server for this property is in NSArray. I want a custom mapper to convert this array to a a concatenated string.
if want to post this object to the server I need convert back this string to NSSArray.
How can I achieve that?
I don't want define an entity named Options and define a relationship between these objects.
options:
{
red,
green,
blue,
}
||
\/
options = "red, green, blue";