So I have an app on the App Store with a .sqlite file containing static data of about 500 records. The .sqlite file has been copied to NSDocumentDirectory, NSUserDomainMask when the application was first launched.
I am planning on releasing an update for my app and simply add about 9 new records to the existing database (no structure changes).
I tried hard to find a suitable method to do this for a minor update but couldn't... The following link: Update/Insert content into an existing Sqlite db on an iPhone app update explains a mechanism where the developer stores the app version in the DB and checks against it to decide whether to update or not...
Appreciate any ideas/assistance on how to do this! Thanks in advance!