in my Settings.bundle I have defined a PSMultiValueSpecifier. Now I want to read the selected value.
This is how I read a simple text from Settings.bundle text field
[[NSUserDefaults standardUserDefaults] stringForKey:@"name_preference"];
Any idea how to read the selected multi value?
Using the
Keyyou specified for this field in your Settings.plist, you can get at the selected value with:There is no way to get at the title of the selected field through user defaults. You would have to read in the Settings.plist directly or store the titles and their accompanying values in a second plist in your app bundle for easy access.