views:

20

answers:

2

I have a plist with two string arrays. I want to merge these two arrays. I tried selecting all the strings in one array and copying to the other, but I cant select multiple items. I don't want to do this programmatically. I'm on a Mac using xcode. Any thoughts?

A: 

Just edit the PList files as text (context menu, "Open as plain text file" or "Source code file") and copy the relevant items in.

Georg Fritzsche
A: 

Save the plist in XML format if it isn't already, then open it as text. If you understand XML, it's pretty straightforward to move all the string nodes from one array to the other, then just remove the unwanted array node.

Joshua Nozzi