Hi,
I got a text file (~1.5 MB) that contains about 25,000 lines. Each line contains values of a location (name, latitude, longitude, etc...). In my app, the user will search for locations, and the app will have to look them up in the file.
I thought about using CoreData (because of SQLite's great performance) to create a persistent store, then search it each time the user searches for a location.
However, creating the whole managed object model etc. seems to be somewhat overkill for my quite trivial task.
Is there any simpler way to do this, or do I have to use CoreData?
Thanks!
- ranguvar
I got a text file (~1.5 MB) that contains about 25,000 lines. Each line contains values of a location (name, latitude, longitude, etc...). In my app, the user will search for locations, and the app will have to look them up in the file.
I thought about using CoreData (because of SQLite's great performance) to create a persistent store, then search it each time the user searches for a location.
However, creating the whole managed object model etc. seems to be somewhat overkill for my quite trivial task.
Is there any simpler way to do this, or do I have to use CoreData?
Thanks!
- ranguvar