I have an iOS project in which I save two string values in NSUserDefaults
for app settings. If I deleted the app from my device, would the saved values be deleted as well? Or does it need to be deleted manually?
Asked
Active
Viewed 180 times
0

aresz
- 2,589
- 6
- 34
- 51
1 Answers
0
As long as this values are only saved locally in NSUserDefaults, when you remove the app, all of this values will be lost. If you need persistance, check for iCloud saving settings.

Armand DOHM
- 1,121
- 1
- 7
- 9
-
I see. Just needed to verify because I wasn't sure. Thanks – aresz Mar 11 '14 at 17:45