Solution
NSUserDefaults is basically kind of hashmap(dictionary) that stores the keys and values.
In order to print all the keys do the follow:
NSLog(@"%@", [[[NSUserDefaults standardUserDefaults] dictionaryRepresentation] allKeys]);
In order to print both the keys & values do the follow:
NSLog(@"%@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]);