I want to store my map data in the sql-lite database on iPhone. I want to use the “NSUserDefaults” class for this. What do you think? It will be efficient to ask the database manager to load the map everytime I need it? And how big map can I store there? Is there any limitations?
Thank you for the answers!
I want to store my map data in the sql-lite database on iPhone. I
Share
NSUserDefaults should really only be used to store settings and not as a general data store. It’s not a sqlite database. For storing your map data you could use Core Data.