I'm currently working with the Mapbox SDK for iOS and got a question about general data management.
I got a table with coordinates and some other attributes and the table has about 600 to 700 rows. Now I was wondering what would be the best way to store and init this data within my app? And the second question, where should I initialize this data?
Question #1: Should I put all my data in the code and init an array with it? Or would it be better to create a local database and query the data from there? Or any other file format? Question #2: Should I init the data/connect to the database within the appDelegate? Or where is the best place to do this?