Is there a way for me to \"walk\" through a list of all the NSUserDefaults in my iPhone app, and only delete certain ones?
NSUserDefault
For example, I\'d like to get
i Got solution for this just use it where you want to remove all sessions
NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain];
it will work