方法1已驗(yàn)證
方法1:找到所有的key然后remove掉
/**
* 清除所有的存儲(chǔ)本地的數(shù)據(jù) */
- (void)clearAllUserDefaultsData { NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSDictionary *dic = [userDefaults dictionaryRepresentation]; for (id key in dic) { [userDefaults removeObjectForKey:key]; } [userDefaults synchronize]; }
方法2:清除持久域
/**
* 清除所有的存儲(chǔ)本地的數(shù)據(jù)
*/
- (void)clearAllUserDefaultsData { NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain]; }