I am currently using Data Abstract for XCode. I have a need to apply changes to a row locally in the briefcase only, without sending these changes to the server. This is required because I consume REST services in the server which modify the record remotely, so there is no need for Relativity to send any change to the server. I know there are several methods, like discard, that allow me to undo all changes to the row, but this is not what I need.
I would like to do something like this:
DADataTableRow *someRow = ;
[someRow applyChanges]; //This would apply any deltas pending for the row, effectively marking the row as unchanged.