Right, so, talking iPhone settings now..
You have your usual way of accessing plist keys, like this:
Code:
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>defaults</key>
<string>xxx.xxx.xxx</string>
<key>default</key>
<true/>
<key>label</key>
<string>WHATEVER</string>
<key>key</key>
<string>xxxKEYxxx</string>
<key>PostNotification</key>
<string>xxx</string>
</dict>
What if the key you need to access (in the plist) is a sub-key? Like this:
Code:
<dict>
<key>xxxKEYxxx</key>
<dict>
<key>xxxSUBKEYxxx</key>
<string>xxx</string>
</dict>
<dict>
How do you access that from your settings plist?
I should mention i'm not able to do this programmatically.