There are plenty of resources on the web regarding the use of Reactive Cocoa for the purpose of "pulling" data from the web via API, etc.
I like the MVVM approach, and am trying to figure out what a good practice would be for sending updates via API when local objects change.
I suspect this is a problem others have solved elegantly. I am thinking that one good approach would be to observe a local array of objects, and make API calls appropriately when data changes. But care would need to be taken to only 'react' when the changes made to the local data objects have been made by the user, and not the server.
Are there existing resources that could point me in the right direction?