mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			981 B
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			46 lines
		
	
	
		
			981 B
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  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<NSString *, id> *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<NSString *, id> *dictionary = self.dictionaryRepresentation;
 | 
						|
    for (NSString *key in dictionary) {
 | 
						|
        [self removeObjectForKey:key];
 | 
						|
    }
 | 
						|
    [self synchronize];
 | 
						|
}
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |