Restkit 0.20 JSON Mapping along with additional offline data
问题 So let's say I have a JSON object like such: { "userList" : [ { "ID" : 1, "firstName" : "John", "lastName" : "Doe" }, { "ID" : 2, "firstName" : "Jane", "lastName" : "Doe" } ] } I am able to map this object into my user class which have the following attribute: ID, firstName, lastName, createdDate, modifiedData The Problem arise when I am need to update modified date I want to be able to insert a data-time stamp whenever I do a mapping along with when I modified the data while in offline mode.