0

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?

aresz
  • 2,589
  • 6
  • 34
  • 51

1 Answers1

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