Are the following two lines equivalent?
1.
[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"example key"]
2.
[[NSUserDefaults standardUserDefaults] setObject:nil forKey:@"example key"]
|
Are the following two lines equivalent? 1.
2.
|
|||
|
|
|
Yes, both lines of code are equivalent, both will result in nil read
NSUserDefaults will return nil if the key was not found. I would recommend to use the removeObjectForKey instead of setting it to nil. here is how to test if setting key value to nil removed the key entry from NSUserDefaults standardUserDefaults.
or simply dump the key/value dictionary of NSUserDefaults standardUserDefaults
|
|||||||||||||||
|