PSMultiValueSpecifier - iPhone SDK + Settings Bundle

5k Views Asked by At

I want to use the PSMultiValueSpecifier in the settings bundle for my iphone app, but for some reason it doesn't want to work?

Does anyone know a good tutorial or sample code on how to use this?

2

There are 2 best solutions below

1
On BEST ANSWER

Make sure you have all 6 Values entered for it: http://developer.apple.com/iphone/library/documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Articles/PSMultiValueSpecifier.html

For each Values entry, it should have a Titles Entry corresponding to it.

0
On

The following works, if the PSMultiValueSpecifier is on the top / root level:

NSString *urlFromSettings = [[NSUserDefaults standardUserDefaults] stringForKey:@"feed"];

I'm on my way to figure out, why it does not work, when used in a child pane.