XCode4 and PropertyLists
Hi, i'm starting to work with XCode4 now.
I want to make a plist, but the editor doesn't let me change the root.
It's always a <dict> and i want to make an <array>
When i make the first element a array, i will become a array in a dict
<plist version="1.0">
<dict>
<key>Root</key>
<array>
<string>Test</string>
</array>
</dict>
</plist>
but what i want is:
<plist version="1.0">
<array>
<string>Test</string>
</array>
</plist>
of course i can change the xml but how can i do that with the property editor in XCode4.
|