I have a dictionary plist. That dictionary has A-Z arrays which have names in them. I would like to alphabetize the names in each of the arrays and save that order back to the plist. Is the best way to enumerate through the keys and do a sort on each of the arrays?
Share
Looks like this does it. mainDict is an NSMutableDictionary. keysArray is an NSArray.
Now the problem is saving it.