I am using:
NSArray *values = [myDict allValues];
to get all contents of dictionary into an array, but it is changing the order of contents.
The contents are received from an url and are retrieved as follows:
NSDictionary *myDict = [[NSDictionary alloc] initWithContentsOfURL:url];
I want the order of contents to be maintained. How do I do that?
Thanks