Do NSUserDefaults persist through an Update to an app in the Appstore?

They are usually not reset unless the user deletes the app. For basic data, NSUserDefaults is the best way to save data such as preferences, dates, strings etc. If you are looking to save images and files, the file system is a better bet.

Leave a Comment