I have an NSArray of objects (not NSStrings, but custom objects). Each object has a value obj.name I know how to sort the NSMutableArray by name as shown below
NSSortDescriptor *sort = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];
[array sortUsingDescriptors:[NSArray arrayWithObject:sort]];
However, some of the names start with "The", "A", or "An" all of which I want to skip over to the next word in the name if they appear. Is there anyway to avoid those three cases and automatically shift to the next word if they appear?