Possible Duplicate:
How can I reverse a NSArray in Objective-C?
I've NSMutableArray *mutArray = [[NSMutableArray alloc]initWithObjects:obj1,obj2,obj3,nil];
and each object have name, title, address
but i want to show mutArray in another NSMutableArray which shows in reverse order it means
obj3, obj2 & then obj1 , nil
how i do it.