Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4087836
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:54:19+00:00 2026-05-20T18:54:19+00:00

Using NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; , I use calls like BOOL boolFromPrefs =

  • 0

Using NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];,

I use calls like BOOL boolFromPrefs = [defaults boolForKey:@"theBoolKey"]; To get a saved BOOL value.

If the key is not found, NO is returned (default behaviour of boolForKey).
But… NO can be a saved setting. Same thing for intForKey

So how can I test if a key exists before trying to get its value ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T18:54:20+00:00Added an answer on May 20, 2026 at 6:54 pm

    Do it the right way and register default values.

    NSDictionary *userDefaultsDefaults = @{
        @"SomeKey": @NO,
        @"AnotherKey": @"FooBar",
        @"NumberKey": @0,
    };
    [NSUserDefaults.standardUserDefaults registerDefaults:userDefaultsDefaults];
    

    do this before you use anything from NSUserDefaults. The beginning of application:didFinishLaunchingWithOptions: is a safe place.

    You have to register the defaults each time the app launches. NSUserDefaults only stores values that have been explicitly set.

    If you use default values you don’t have to use a check for a “isFirstLaunch” key, like suggested in other answers.
    This will help you when you roll out an update and you want to change the default value for a NSUserDefaults item.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm implementing saved data on my app by using NSUserDefaults, like this: [[NSUserDefaults standardUserDefaults]
I have saved data which was saved using NSUserDefaults. I was under the impression
I'm using [NSUserDefaults standardUserDefaults] for storing application settings. My questions are: do those settings
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObject:@xxxxxxxx forKey:@name]; [defaults synchronize]; I need to know
I have this in my app delegate applicationDidFinishLaunching method: NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
Is it possible to save an integer array using NSUserDefaults on the iPhone? I
Using PyObjC , you can use Python to write Cocoa applications for OS X.
I'm using NSUserDefaults to keep an object in sync across several UIViewController s that
I'm using KVC to serialize an NSObject and attempt to save it to NSUserDefaults
I have been using NSUserDefaults for passing floats all around my apps. But they

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.