I have a such problem. I have NSMutableDictionary
Object 10 Key 1
Object 20 Key 2
Object 30 Key 3
Object 40 Key 4
Object 50 Key 5
Then I have code
NSArray*currentArray=[currentMutableDictionary allValues];
When I output current Array I have Value
20
50
30
10
40
How I can add obects from Dictionary to Array in the correct order ?
Thanks for your answers.