Is it good idea to save txt file in the application?
For example once user clicks on play button progress bar is activated, it gets data from server and data parsed and shown on the map and also at the same time each time stamp data is saved in txt file. Once progress bar is full and then resets itself and starts from 0 again.
Next cycle it wont read data from server but read data from saved txt file.
Do you think is it good idea? Please excuse my question, if it is
I think a good approach to that would be to store your data in a NSDictionary and save it to the app folder on the device as a *.plist file. Then you can load this data source and refresh it online whenever you choose.