I am just wondering if it is possible to sort a dictionary of integers in iOS? Looking at previous examples/questions it seems that most people are sorting arrays of ints or arrays of dictionaries (containing ints).
However, lets say I have a dictionary with the structure:
{numWords = 12, numPhotos = 15, numFriends = 8}
The keys are not the same so it seems I cannot use a sort descriptor (initialising with key), so is there any way to sort the integers and keep the associated keys in-tact?