iPhone offline application with synchronization

后端 未结 5 1515
深忆病人
深忆病人 2021-01-29 23:52

I\'m looking into building an application which works just as well offline as it does online. Since the application cannot communicate with the server while in offline, there is

5条回答
  •  情话喂你
    2021-01-30 00:14

    Wonder if you have considered using a Sync Framework to manage the synchronization. If that interests you can take a look at the open source project, OpenMobster's Sync service. You can do the following sync operations

    • two-way
    • one-way client
    • one-way device
    • bootup

    Besides that, all modifications are automatically tracked and synced with the Cloud. You can have your app offline when network connection is down. It will track any changes and automatically in the background synchronize it with the cloud when the connection returns. It also provides synchronization like iCloud across multiple devices

    Also, modifications in the Cloud are synched using Push notifications, so the data is always current even if it is stored locally.

    Here is a link to the open source project: http://openmobster.googlecode.com

    Here is a link to iPhone App Sync: http://code.google.com/p/openmobster/wiki/iPhoneSyncApp

提交回复
热议问题