Code:
NSSortDescriptor *lastNameDescriptor = [[NSSortDescriptor alloc] initWithKey:@"lastName" ascending:YES];
[peopleArray sortUsingDescriptors:[NSArray arrayWithObject:lastNameSorter]];
So this may be interesting, is it possible to do a a sort on the whole array with the exception of the very first entry? (index 0).
Or do I have to make 2 new arrays then add the original index 0 back to copy 1, then sort the remaining into array 2, the recombine etc.
any thoughts?
cheers.bo
:apple: