Reorder items in a plist file

I want to change the order in the plist file not programmatically, but from xcode. Is there a way in Xcode where I can sort by value? I just want to arrange it for myself. For now, if I want to add a new element, it will always go tail.

Like here

How to sort it? For a value of 100, go to the beginning?

+5
source share
1 answer

You can edit the plist file using a text editor. Right click on the plist file -> open as -> source code.

and I think you need to put the rows in an array

+5
source

All Articles