In my app there is a TextView that contains a date that is subject to change. Once the app is published on the app store, I want to be able to change the text of the TextView. I see two ways of doing this:
Change the text of the actual TextView in the code and resubmit the binary to apple, which takes a few weeks for them to approve, and all the users need to download the updated version (not ideal).
Have the app check a server somewhere to see if there is an updated version of the text for the TextView to use. This requires the user to have a constant internet connection (whenever they aren't on the internet connection, the TextView will revert back to its original text because it won't be able to check the server to see if it needs to display different text).
Ideally what I want is a system where the app checks a server for an updated version of the text, and if there is an updated version the TextView permanently takes on that updated version. Thus, as soon as it has been updated once, it will always remain in that updated state regardless of internet connectivity. Is this possible?