I have an iOS application that uses SQLite DB to store its data model. The user cannot modify the contents of this database in any way. The only thing that will change the contents of the database is when I add more content to future application updates. (The application never writes content to the database, only reads it)
So, when I perform such an update, I want him to use the βnewβ version of the database in the new version that I am creating and just get rid of the old database. What is the best way to do this? Is there an easy way to just tell him to grab a new version of the database during the upgrade, or do I need to program in the user logic for this?
source share