Can someone be so kind and explain the options to read and write information in iOS? What I’m looking for is not explanation on how to read and write simply the options available when saving in iOS.
The main reason for this question is because I’m currently practicing with a small app I created, the app does some calculations and I would like to be able to save the result locally for later use.
What are the options when saving a simple NSString locally in iOS? Is this even possible?
If the above is possible, where are these local files saved?
How much can you save locally before you need a database?
What classes/methods should I be looking into (the only one I found so far is NSData)?
Again what I’m looking for with this question is understand what the options are when reading and writing information in iOS.
Thanks a lot.