user1633843
user1633843

Reputation: 1

Backup / Restore Coredata (sqlite)

I have a standard iOS coredata application (sqlite). Users are requesting that they be able to backup and restore from backup their data. Can anybody tell me how to do so? Or some links where this is explained in detail? I don't mind using iTunes file sharing but would like to know how to implement this.

Also if the user restores a database if the database is not correct it should be rejected before replacing the existing database. I have searched the internet for this but did not find any examples.

Upvotes: 0

Views: 767

Answers (1)

Adam
Adam

Reputation: 26917

I recommend iCloud. iCloud API is intended to work with Core Data sqlite databases. For more information read Using Core Data with iCloud Release Notes.

Upvotes: 1

Related Questions