方法1已验证
方法1:找到所有的key然后remove掉
/**
* 清除所有的存储本地的数据 */
- (void)clearAllUserDefaultsData { NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSDictionary *dic = [userDefaults dictionaryRepresentation]; for (id key in dic) { [userDefaults removeObjectForKey:key]; } [userDefaults synchronize]; }
方法2:清除持久域
/**
* 清除所有的存储本地的数据
*/
- (void)clearAllUserDefaultsData { NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain]; }
网友评论