Skip to content

Instantly share code, notes, and snippets.

@dougdiego
Last active March 27, 2024 00:59
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dougdiego/945fd2e33769cf5f1338 to your computer and use it in GitHub Desktop.
Save dougdiego/945fd2e33769cf5f1338 to your computer and use it in GitHub Desktop.
Migrate NSUserDefaults to App Groups - Swift
func migrateUserDefaultsToAppGroups() {
// User Defaults - Old
let userDefaults = NSUserDefaults.standardUserDefaults()
// App Groups Default - New
let groupDefaults = NSUserDefaults(suiteName: "group.myGroup")
// Key to track if we migrated
let didMigrateToAppGroups = "DidMigrateToAppGroups"
if let groupDefaults = groupDefaults {
if !groupDefaults.boolForKey(didMigrateToAppGroups) {
for key in userDefaults.dictionaryRepresentation().keys {
groupDefaults.setObject(userDefaults.dictionaryRepresentation()[key], forKey: key)
}
groupDefaults.setBool(true, forKey: didMigrateToAppGroups)
groupDefaults.synchronize()
print("Successfully migrated defaults")
} else {
print("No need to migrate defaults")
}
} else {
print("Unable to create NSUserDefaults with given app group")
}
}
@PedroCavaleiro
Copy link

An updated version of your code to Swift 4

func migrateUserDefaultsToAppGroups() {
        
        // User Defaults - Old
        let userDefaults = UserDefaults.standard
        
        // App Groups Default - New
        let groupDefaults = UserDefaults(suiteName: "group.myGroup")
        
        // Key to track if we migrated
        let didMigrateToAppGroups = "DidMigrateToAppGroups"
        
        if let groupDefaults = groupDefaults {
            if !groupDefaults.bool(forKey: didMigrateToAppGroups) {
                for key in userDefaults.dictionaryRepresentation().keys {
                    groupDefaults.set(userDefaults.dictionaryRepresentation()[key], forKey: key)
                }
                groupDefaults.set(true, forKey: didMigrateToAppGroups)
                groupDefaults.synchronize()
                print("Successfully migrated defaults")
            } else {
                print("No need to migrate defaults")
            }
        } else {
            print("Unable to create NSUserDefaults with given app group")
        }
        
    }

Copy link

ghost commented Feb 24, 2020

thx so much!

@shaundon
Copy link

This is super helpful, thank you!

@MatyasKriz
Copy link

I don't really understand why would you call userDefaults.dictionaryRepresentation() twice when you can just do

for (key, value) in standardDefaults.dictionaryRepresentation() {
    groupDefaults.set(value, forKey: key)
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment