I am an Iphone developer and I am new to this technology. I want to sort an NSMutableArray. At every index of this array, there is an NSMutableDictionary. Every dictionary has two fields : Name and Date.  I want to sort the array according to this Date field . My array looks like following : 
(
   {
       name :  raj
       date  : 20/09/1998
   }
   {
       name : teena
       date : 21/06/1987
   }
)
I searched on net a lot but couldn't find any appropriate answer. Please help me guys. Any response will highly be appreciated.
 
     
     
    