I got NSDictionary with pairs like :
Key -> Value: @\"home\" -> @\"blue\" @\"family\" -> @\"green\" @\"work\" -> @\"red\" >
Key -> Value: @\"home\" -> @\"blue\" @\"family\" -> @\"green\" @\"work\" -> @\"red\"
You can access the keys in a sorted order with method like keysSortedByValueUsingComparator, keysSortedByValueWithOptions or keysSortedByValueUsingSelector. But by definition a NSDictionary itself has no notion or order.
keysSortedByValueUsingComparator
keysSortedByValueWithOptions
keysSortedByValueUsingSelector
NSDictionary