Hey,
Im trying to achieve something like this
NSMutableArray *myArray = [[NSArray alloc] initWithObjects: @"A",@"B",@"C",nil, retain];
NSLog(@"Array: %@, myArray);
//logs A, B, C.
//reverse code here
NSLog(@"Array: %@, myArray);
//logs C, B, A
The code isn't exact, just a demo. But you get the idea.
Any way to do this?
Cheers, Sam