删除NSUserDefaults所有记录

- (void)resetDefaults {

NSUserDefaults * defs = [NSUserDefaults standardUserDefaults];

NSDictionary * dict = [defs dictionaryRepresentation];

for (id key in dict) {

[defs removeObjectForKey:key];

}

[defs synchronize];

}

你可能感兴趣的:(删除NSUserDefaults所有记录)