10 lines
195 B
Mathematica
10 lines
195 B
Mathematica
|
#import "NSUserDefaults+WMFReset.h"
|
||
|
|
||
|
@implementation NSUserDefaults (WMFReset)
|
||
|
|
||
|
- (void)wmf_resetToDefaultValues {
|
||
|
[self removePersistentDomainForName:WMFApplicationGroupIdentifier];
|
||
|
}
|
||
|
|
||
|
@end
|