I'm developing an app that gets identification number and age at the first launch. I also want to use these values later on. Where should I save these values in?
Is it automatically saved?
My language is Swift.
I'm developing an app that gets identification number and age at the first launch. I also want to use these values later on. Where should I save these values in?
Is it automatically saved?
My language is Swift.
You can save them in NSUserDefaults
,
NSUserDefaults *def = [NSUserDefaults standardUserDefaults];
[def setObject:@"value:@"key"];
[def synchronize];