iOS清空NSUserDefaults下的内容

//方法一

NSString*appDomain = [[NSBundlemainBundle]bundleIdentifier];

[[NSUserDefaultsstandardUserDefaults]removePersistentDomainForName:appDomain];

//方法二

- (void)resetDefaults {

NSUserDefaults* defs = [NSUserDefaultsstandardUserDefaults];

NSDictionary* dict = [defsdictionaryRepresentation];

for(idkeyindict) {

[defsremoveObjectForKey:key];

}

[defssynchronize];

}



文/苏渝粤(简书作者)
原文链接:http://www.jianshu.com/p/9cb6ea37f46c
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

你可能感兴趣的:(iOS清空NSUserDefaults下的内容)