tristanhimmelman/AlamofireObjectMapper

modify the property values and set to Model

Opened this issue · 0 comments

I am using ObjectMapper and Realm

class User:Object, Mappable
{
dynamic var name: String?
}
func mapping(map: Map) {
name <- map["Name"]
}

ObjectMapper is converting ' is converting to some junk charater by default.

Please recommend me best approach to do removingPercentEncoding from my side

Now my question is i want to apply removingPercentEncoding to name before saving it model and Realm.

How can I do this?