Possible Duplicate:
How can I reset the NSUserDefaults data in the iPhone simulator?
Can we reset NSUserDefaults for all the keys at the same time? Right now I reset for individual keys. So if there is a way to do that in a single go please tell me.
Thanks
Here is how to do it without looping over all values and removing them.
NSString *domainName = [[NSBundle mainBundle] bundleIdentifier];
[[NSUserDefaults standardUserDefaults] removePersistentDomainForName:domainName];
精彩评论