I have an iPhone app where I have defined an Settings.bundle with the following settings:

<dict>
        <key>DefaultValue</key>
        <integer>2</integer>
        <key>Key</key>
        <string>calculationMethod</string>
        <key>Title</key>
        <string>CALCULATION_METHOD</string>
        <key>Titles</key>
        <array>
            <string>Method A</string>
            <string>Method B</string>
            <string>Method C</string>
            <string>Method D</string>
            <string>Method E</string>
            <string>Method F</string>
            <string>Method G</string>
        </array>
        <key>Type</key>
        <string>PSMultiValueSpecifier</string>
        <key>Values</key>
        <array>
            <integer>3</integer>
            <integer>2</integer>
            <integer>5</integer>
            <integer>4</integer>
            <integer>1</integer>
            <integer>6</integer>
            <integer>0</integer>
        </array>
    </dict>

As you can see I want the "Method B" to be selected by default which I define by setting the DefaultValue. However, this only selects the "Method B" in the list, but the actual value returned is by [settings integerForKey:@"calculationMethod"] is 0, which corresponds to "Method G". Am I forgetting something here or is this not the way DefaultValue works at all?

PS. After I change the selection to something else and then back to "Method B" I get the correct value.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

It's not clear what you mean by [settings integerForKey:@"calculationMethod"]. If settings is an instance of NSUserDefaults, what you are seeing is indeed the expected behavior. The default values in the Settings.bundle only control what is displayed for your app in the Settings app. They have no influence at all on the preferences you load from NSUserDefaults while your app is running.

To get the same default values into the user defaults, you will have to create a second plist that contains the keys (@"calculationMethod") and their default values in a dictionary. When your app launches, open this plist file and pass it to -[NSUserDefaults registerDefaults:].

link|improve this answer
Thank you for the reply Ole. Yes, you are correct, settings is an instance of NSUserDefaults. Your answer confirms my suspicion about the role of DefaultValue, but to be honest I don't get the purpose of this behavior at all. I mean, there is a real pitfall of inconsistency here since you set the displayed value in one place and the actual value in another. – NobleK Apr 27 '11 at 20:18
I tend to agree. You should file a bug report/enhancement request with Apple. – Ole Begemann Apr 27 '11 at 20:21
feedback

Your Answer

 
or
required, but never shown

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