Reputation: 17882
My iPad app currently uses Settings.bundle to allow settings both via the built-in Settings.app as well as via InAppSettingsKit. I now want to switch to IASK entirely and disable the built-in settings. I have renamed the Settings.bundle folder to InAppSettings.bundle, but when I deploy this new version to my test device, the old Settings data seems to stick around - at least, I can still access the old settings via Settings.app.
Is there a way to force removal of Settings.bundle when a new version of the app is installed?
Upvotes: 7
Views: 1981
Reputation: 318934
Make sure you do a clean build in Xcode. For development builds, you also need to remove the app from the Simulator or device first. Otherwise old files are left in place.
Upvotes: 9