In Xcode, I had gotten quite used to creating plists to store simple arrays of static data.
However, in Xcode 4 I can’t figure out how to change the default root type of a plist from Dictionary to Array.
Just one of many frustrations I’ve been having with Xcode 4. Does anyone know how to do this?
Just right-click the .plist file and open file as source code. Now we will be able to see the xml file.
Replace the
<dict/>to<array/>. Now build the project once. Things will be all right.