I am looking forward to save around 10 strings in my iPhone App. I want the users to be able to edit this strings and when they open the app next time they should be able to see the edited values again.
I wanted to know
- what are the possible ways in which this can be achieved? (SQLite, Text file, etc)
- Which option would suit my requirements best (in terms of trade-offs between complexity & performance
- Any sample code or links pointing to the relevant sample code / tutorial
Thanks in advance.
EDIT 1:
I was thinking how would it be if I initially store the strings inside an NSMutableArray
and then persist it for storage and read it again when the app opens the next time? Is this worth doing for my requirements?