iOS Remove all the values from NSUserDefaults

//Get the application bundle identifier 
NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier];

//And remove persistent domain for the given bundle identifier 
 [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain];

No comments: