How to register user defaults using NSUserDefaults without overwriting existing values?
From the documentation for -registerDefaults: (emphasis added): The contents of the registration domain are not written to disk; you need to call this method each time your application starts. You can place a plist file in the application’s Resources directory and call registerDefaults: with the contents that you read in from that file. So your … Read more