Apply changes to the briefcase without server intervention

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.

Found an old thread that specified a hack using DADelta. I am using this to resolve all deltas on the rows I don’t want transferred.

Hi,

I’m sorry for belated response.
Yeah I answered the similar question some time ago.
If I remember correctly it was in ‘Is possible to use Deltas with no datatables?’ topic

Did you solve the problem?