// // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // #import "NSUserDefaults+OWS.h" #import "AppContext.h" NS_ASSUME_NONNULL_BEGIN @implementation NSUserDefaults (OWS) + (NSUserDefaults *)appUserDefaults { return CurrentAppContext().appUserDefaults; } + (void)migrateToSharedUserDefaults { NSUserDefaults *appUserDefaults = self.appUserDefaults; NSDictionary *dictionary = [NSUserDefaults standardUserDefaults].dictionaryRepresentation; for (NSString *key in dictionary) { id value = dictionary[key]; [appUserDefaults setObject:value forKey:key]; } } + (void)removeAll { [NSUserDefaults.standardUserDefaults removeAll]; [self.appUserDefaults removeAll]; } - (void)removeAll { NSDictionary *dictionary = self.dictionaryRepresentation; for (NSString *key in dictionary) { [self removeObjectForKey:key]; } [self synchronize]; } @end NS_ASSUME_NONNULL_END