I am developing an iOS 4 application with the latest versions of the SDK and Xcode 4.2.
I have an NSMutableDictionary where the keys are NSDate and the values are NSMutableString .
When I filled out NSMutableDictionary , I want to sort its keys, but I don't know how to do it.
I need the first January dates, then February, etc.
Key format NSDate dd / mm / yyyy .
How can I sort these keys when NSMutableDictionary has all its keys and values? (I am not going to add more).
source share