Dear all
I am new here and I checked out several tutorials to get in touch with the
Objective C.
Now I'm wondering how you prefer to store your data. Many people were
talking about SQLite, but until now I was "scared" to start with that as
I have not that much experience with Objective C.
Some hours ago I found this code example:
Code:
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
[prefs setObject:@"TextToSave" forKey:@"keyToLookupString"];
[prefs synchronize];
I have successfully tested it and I wondered how this stuff is stored? When
I tried it on my iPod it seemed that this data is stored until you delete your
application. Is that really true?
When do people use this method? I guess if you have more data, you should
use SQLite?
Thanks for your answers! I'm looking forward to reading them!