I have a query like, what actually happens when
- someone updates an iOS app with latest build file (ipa file)
- replace already installed app with new iOS build directly without deleting older one
In my app there are global variables (shared instances) and a database available. Values for both having read+write features.
If new build affects these things, then values which are already stored, may cause an problem in app.
What if database structure changes in new build than the older one?
Note: My app supports background running, so while installing new build, it might be possible that user is not quit from the app.
I have already tried to search on this topic, but not found any specific explanation on this. Already referred: iPhone app Update Vs new version
Any help/explanation would be grateful.