Hello,
I have a dictionary like this :
<dict>
<key>ThemeName</key>
<string>Theme1</string>
<key>AddToFavoritesButton</key>
<dict>
<key>DownImage</key>
<string>heart_selected.png</string>
<key>UpImage</key>
<string>heart.png</string>
</dict>
<dict>
How to iterate all keys and getting all values in an array ?
like this :
res[0] = Theme1
res[1] = heart_selected.png
res[2] = heart.png
...
Thanks
Thierry