I have about 200 String values and each string needs to be placed into 1 of 20 arrays (sometimes more than 1). The data is all static and I know ahead of time which array I want each string to be placed into.
I'd like to create a plist to hold my strings. Each entry in the plist is a key-value dictionary. One key-value will be the string itself. But I also want to add an array to each dictionary, and the array will contain a list of the name of each array that the string should be placed into.
So I'm wondering, is there a way to reference a variable from my plist? I'd like to be able to just add a string into the plist with a value that is the name of my array variable. At some later time from my code, I want to retrieve that string from the plist and convert it into a reference to the variable with the same name. Any ideas how to do this?
Thanks!
Sunny