I am about to submit my new app to the iOS App Store.
It's very simple. The app generates a random motivational quote and displays it onscreen. I have a database of 500 quotes now, stored in a plist file.
I will add more quotes bi-monthly, essentially just adding text to the existing plist file.
How should I approach this? Do I simply upload an amended plist file to my app within the 'backend' of the App Store? Would I have to submit a whole new build and version every time I amend the plist?
Or would I store this plist file on an external server and update that file? Am I able to link this updated plist file (on my external server) to the plist file within my existing app on the App Store?
What's my best approach?
I am really new to server side architecture.