Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Alright, so I'm working on a small iPhone app, and I am using NSUserDefaults as my data persistence. It only has to keep track of a few things, such as some names and some numbers so I figure I might as well keep it simple.

I found this page for some reference, but I don't think it can answer my question. Basically, I want to be able to check if a value (or a key) already exists in the NSUserDefaults and then do something accordingly.

Some examples: The app starts up, if this is the first time it starts up it outputs an alert saying welcome. To tell if this is first time it has opened it reads the UserDefaults and checks.

Example 2: It says, "Hello [Name]", where Name is something you have entered. If you have opened the app and there is no name, it should say "Hello World." I need to check if you have entered a name already and act accordingly. The name would be stored in NSUserDefaults.

Some help here? I'd really appreciated it!!

share|improve this question

4 Answers

up vote 93 down vote accepted

objectForKey will return nil if it doesn't exist

share|improve this answer
2  
Does this work even for primitive data types? – FreeAsInBeer Jul 25 '11 at 20:04
4  
yes it works even for primitive data types, like BOOL. – phix23 Nov 7 '11 at 10:25
4  
Apple's docs say that "If a boolean value is associated with defaultName in the user defaults, that value is returned. Otherwise, NO is returned." I don't think the above answer is correct for BOOLs, you can't determine if it's defined NO or doesn't exist. I think you'd have to use – dictionaryRepresentation and check for the key. – zekel Feb 13 '12 at 20:13
7  
@zekel Rather than guessing, I tested this (on iOS 5.1.1), and it definitely detected whether or not a BOOL was present, independent of what the value of said BOOL might be. "objectForKey" returned nil when the BOOL was not present because it had never been set. – DataGraham Jul 30 '12 at 16:27
2  
Agreed, this answer is correct based on my testing – pdesantis Aug 9 '12 at 19:47
show 2 more comments

The objectForKey method will return nil if the value does not exist. Here's a simple IF / THEN test that will tell you if the value is nil:

if([[NSUserDefaults standardUserDefaults] objectForKey:@"YOUR_KEY"] != nil) {
    ...
}
share|improve this answer

Ask for the object/value/whatever and if it comes back nil or zero, it isn't there

What if the value saved/loaded really IS a value of zero?

It's better to check for nil... than zero.

share|improve this answer

"objectForKey will return nil if it doesn't exist." It will also return nil if it does exist and it is either an integer or a boolean with a value of zero (i.e. FALSE or NO for the boolean).

I've tested this in the simulator for both 5.1 and 6.1. This means that you cannot really test for either integers or booleans having been set by asking for "the object". You can get away with this for integers if you don't mind treating "not set" as if it were "set to zero".

The people who already tested this appear to have been fooled by the false negative aspect, i.e. testing this by seeing if objectForKey returns nil when you know the key hasn't been set but failing to notice that it also returns nil if the key has been set but has been set to NO.

For my own problem, that sent me here, I just ended up changing the semantics of my boolean so that my desired default was in congruence with the value being set to NO. If that's not an option, you'll need to store as something other than a boolean and make sure that you can tell the difference between YES, NO, and "not set."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.