I've looked everywhere but I still haven't found much documentation about how to use NS(Mutable)Dictionary. I'd like to use it with user preferences, for example.
This is what I want to achieve:
<dict>
<key>MY KEY</key>
<array>
<dict>
<key>Subkey1</key>
<string>PreviousPage</string>
<key>Subkey2</key>
<string>NextPage</string>
<key>Subkey2</key>
<string>TypesetEE</string>
</dict>
</array>
</dict>
<dict>
<key>ANOTHER KEY</key>
<array>
<dict>
<key>Subkey1</key>
<string>PreviousPage</string>
<key>Subkey2</key>
<string>NextPage</string>
<key>Subkey2</key>
<string>TypesetEE</string>
</dict>
</array>
</dict>
But I don't know how...
